Somewhere there’s analysis small and large patches special
## [1] "!! high !! (this document showcases only the analysis done for the high disturbance)"
# R markdown
start_time = Sys.time()
knitr::opts_chunk$set(message = FALSE,
cache = FALSE,
autodep = FALSE)
recompute_lengthy_analyses = FALSE #Lengthy analyses have been suppressed. Set recompute_analyses = TRUE to redo them.
# Disturbance & resource flows
disturbance_levels = c("low", "high")
n_disturbance_levels = length(disturbance_levels)
resource_flow_days = c(5, 9, 13, 17, 21, 25)
first_resource_flow = resource_flow_days[1]
# Sampling
total_frames = 125
volume_recorded_μl = 34.4
time_points = 0:7
time_points_without_t0 = 1:7
time_point_names = c("t0", "t1", "t2", "t3", "t4", "t5", "t6", "t7")
sampling_days = c(0, 4, 8, 12, 16, 20, 24, 28)
first_time_point = 0
last_time_point = length(sampling_days) - 1
n_time_points = last_time_point + 1
nr_videos = c(12, 1, 1, 1, 1, 1, 2, 2) #Videos taken for each time point for each culture. At t0 we took 12 videos of the large bottle from which we started the cultures. Write why 2 at the end.
videos_taken = data.frame(time_point = 0 : 7,
nr_videos = c(12, 1, 1, 1, 1, 1, 2, 2))
n_videos_taken_t0 = nr_videos[1]
time_point_day = data.frame(
time_point = first_time_point:last_time_point,
day = sampling_days,
video_replicates = nr_videos
)
videos_to_take_off = data.frame(culture_ID = NA,
time_point = NA,
file = NA) %>%
add_row(culture_ID = 137-110, time_point = 7, file = 137) %>%
slice(-1)
n_cultures = 110
total_number_of_video_rows = sum(nr_videos * n_cultures)
# Protists
protist_species = c("Ble", "Cep", "Col", "Eug", "Eup", "Lox", "Pau", "Pca", "Spi", "Spi_te", "Tet")
protist_species_indiv_per_volume = paste0(protist_species, "_indiv_per_volume")
protist_species_indiv_per_ml = paste0(protist_species, "_indiv_per_ml")
protist_species_dominance = paste0(protist_species_indiv_per_ml, "_dominance")
protist_species_total = paste0(protist_species, "_tot_indiv")
n_protist_species = length(protist_species)
first_protist = protist_species[1]
last_protist = protist_species[n_protist_species]
species_IDD_with_13_threshold = c("Col", "Eug", "Eup", "Lox", "Pau", "Pca", "Spi_te", "Tet")
species_IDD_with_13_threshold_indiv_per_volume = paste0(species_IDD_with_13_threshold, "_indiv_per_volume")
species_IDD_with_40_threshold = c("Ble", "Cep", "Spi")
species_IDD_with_40_threshold_indiv_per_volume = paste0(species_IDD_with_40_threshold, "_indiv_per_volume")
# Patches
patches_to_take_off = 60 #Culture ID = 60 as it was spilled (small isolated, high disturbance, system nr = 40)
culture_info = read.csv(here("data", "culture_info.csv"), header = TRUE)
columns_patches = c("time_point",
"day",
"culture_ID",
"system_nr",
"disturbance",
"patch_type",
"patch_size",
"patch_size_ml",
"size_connected_patch",
"metaecosystem",
"metaecosystem_type")
columns_treatments = columns_patches[!columns_patches %in% c("system_nr", "culture_ID")]
variables_patches = c("bioarea_mm2_per_ml",
"bioarea_tot_mm2",
"indiv_per_ml",
"indiv_tot",
"species_richness",
"shannon",
"simpson",
"inv_simpson",
"evenness_pielou",
"median_body_area_µm2",
paste0(protist_species, "_indiv_per_ml"),
paste0(protist_species, "_tot_indiv"),
paste0(protist_species_indiv_per_ml, "_dominance"))
baseline_columns = paste0("baseline_", variables_patches)
patch_types_ordered = c("Small isolated",
"Small connected to small",
"Small connected to large",
"Medium isolated",
"Medium connected to medium",
"Large isolated",
"Large connected to large",
"Large connected to small")
treatments_and_controls = data.frame(
treatment = c(
"Small connected to small",
"Small connected to large",
"Medium connected to medium",
"Large connected to large",
"Large connected to small"
),
control = c(
"Small isolated",
"Small isolated",
"Medium isolated",
"Large isolated",
"Large isolated"
)
)
n_treatments = length(unique(treatments_and_controls$treatment))
n_controls = length(unique(treatments_and_controls$control))
n_replicates = 5
n_patch_types = 8
# Size classes
n_size_classes = 12
columns_classes = c(columns_patches,
"size_class_n",
"mean_class_area_µm2")
# Meta-ecosystems
metaecosystems_to_take_off = culture_info %>%
filter(culture_ID %in% patches_to_take_off) %>%
pull(system_nr) %>%
unique
system_nr_metaecosystems = culture_info %>%
filter(metaecosystem == "yes") %>%
pull(system_nr) %>%
unique
n_metaecosystems = length(system_nr_metaecosystems)
variables_metaecos = c(
"total_metaecosystem_bioarea_mm2",
"jaccard_index",
"bray_curtis",
"beta_spatial_turnover",
"beta_nestedness",
"beta_total",
"metaecosystem_richness")
metaecosystem_types_ordered = c(
"Small-Small meta-ecosystem",
"Medium-Medium meta-ecosystem",
"Medium-Medium isolated",
"Large-Large meta-ecosystem",
"Small-Large meta-ecosystem",
"Small-Large isolated")
# Plotting
axis_names = data.frame(variable = NA,
axis_name= NA) %>%
add_row(variable = "day", axis_name = "Time (day)") %>%
add_row(variable = "patch_size_ml", axis_name = "Patch size (ml)") %>%
add_row(variable = "log_size_class", axis_name = "Log size (μm2)") %>%
add_row(variable = "class_indiv_per_µl", axis_name = "Density (ind/ml)") %>%
add_row(variable = "bioarea_mm2_per_ml", axis_name = "Bioarea density (mm²/ml)") %>%
add_row(variable = "bioarea_mm2_per_ml_d", axis_name = "Bioarea Density ES") %>%
add_row(variable = "bioarea_tot", axis_name = "Tot Bioarea (mm²)") %>%
add_row(variable = "total_metaecosystem_bioarea_mm2", axis_name = "Tot Bioarea (mm²)") %>%
add_row(variable = "species_richness", axis_name = "Species Richness") %>%
add_row(variable = "species_richness_d", axis_name = "Species Richness ES") %>%
add_row(variable = "mean_richness", axis_name = "mean α Diversity (Shannon)") %>%
add_row(variable = "mean_shannon", axis_name = "mean α Diversity (Shannon)") %>%
add_row(variable = "shannon", axis_name = "Biodiversity (Shannon)") %>%
add_row(variable = "shannon_d", axis_name = "Biodiversity ES (Shannon ES)") %>%
add_row(variable = "bray_curtis", axis_name = "β Diversity (Bray-Curtis)") %>%
add_row(variable = "beta_spatial_turnover", axis_name = "Turn over (Simpson pair-wise dissimilarity)") %>%
add_row(variable = "beta_nestedness", axis_name = "Nestedness (nestedness-fraction of Sorensen)") %>%
add_row(variable = "beta_total", axis_name = "Tot β Diversity (Sorensen)") %>%
add_row(variable = "metaecosystem_richness", axis_name = "γ Diversity (Species Richness)") %>%
add_row(variable = "indiv_per_ml", axis_name = "Abundance (ind/ml)") %>%
add_row(variable = "indiv_per_ml_d", axis_name = "Abundance ES") %>%
add_row(variable = "median_body_area_µm2", axis_name = "Median body size (µm²)") %>%
add_row(variable = "median_body_area_µm2_d", axis_name = "Median Body Size ES") %>%
add_row(variable = "Ble_indiv_per_ml", axis_name = "Ble Density (ind/ml)") %>%
add_row(variable = "Cep_indiv_per_ml", axis_name = "Cep Density (ind/ml)") %>%
add_row(variable = "Col_indiv_per_ml", axis_name = "Col Density (ind/ml)") %>%
add_row(variable = "Eug_indiv_per_ml", axis_name = "Eug Density (ind/ml)") %>%
add_row(variable = "Eup_indiv_per_ml", axis_name = "Eup Density (ind/ml)") %>%
add_row(variable = "Lox_indiv_per_ml", axis_name = "Lox Density (ind/ml)") %>%
add_row(variable = "Pau_indiv_per_ml", axis_name = "Pau Density (ind/ml)") %>%
add_row(variable = "Pca_indiv_per_ml", axis_name = "Pca Density (ind/ml)") %>%
add_row(variable = "Spi_indiv_per_ml", axis_name = "Spi Density (ind/ml)") %>%
add_row(variable = "Spi_te_indiv_per_ml", axis_name = "Spi te Density (ind/ml)") %>%
add_row(variable = "Tet_indiv_per_ml", axis_name = "Tet Density (ind/ml)") %>%
add_row(variable = "Ble_indiv_per_ml_d", axis_name = "Ble Density ES") %>%
add_row(variable = "Cep_indiv_per_ml_d", axis_name = "Cep Density ES") %>%
add_row(variable = "Col_indiv_per_ml_d", axis_name = "Col Density ES") %>%
add_row(variable = "Eug_indiv_per_ml_d", axis_name = "Eug Density ES") %>%
add_row(variable = "Eup_indiv_per_ml_d", axis_name = "Eup Density ES") %>%
add_row(variable = "Lox_indiv_per_ml_d", axis_name = "Lox Density ES") %>%
add_row(variable = "Pau_indiv_per_ml_d", axis_name = "Pau Density ES") %>%
add_row(variable = "Pca_indiv_per_ml_d", axis_name = "Pca Density ES") %>%
add_row(variable = "Spi_indiv_per_ml_d", axis_name = "Spi Density ES") %>%
add_row(variable = "Spi_te_indiv_per_ml_d", axis_name = "Spi te Density ES") %>%
add_row(variable = "Tet_indiv_per_ml_d", axis_name = "Tet Density ES") %>%
add_row(variable = "Ble_indiv_per_ml_dominance", axis_name = "Ble Dominance (%)") %>%
add_row(variable = "Cep_indiv_per_ml_dominance", axis_name = "Cep Dominance (%)") %>%
add_row(variable = "Col_indiv_per_ml_dominance", axis_name = "Col Dominance (%)") %>%
add_row(variable = "Eug_indiv_per_ml_dominance", axis_name = "Eug Dominance (%)") %>%
add_row(variable = "Eup_indiv_per_ml_dominance", axis_name = "Eup Dominance (%)") %>%
add_row(variable = "Lox_indiv_per_ml_dominance", axis_name = "Lox Dominance (%)") %>%
add_row(variable = "Pau_indiv_per_ml_dominance", axis_name = "Pau Dominance (%)") %>%
add_row(variable = "Pca_indiv_per_ml_dominance", axis_name = "Pca Dominance (%)") %>%
add_row(variable = "Spi_indiv_per_ml_dominance", axis_name = "Spi Dominance (%)") %>%
add_row(variable = "Spi_te_indiv_per_ml_dominance", axis_name = "Spi te Dominance (%)") %>%
add_row(variable = "Tet_indiv_per_ml_dominance", axis_name = "Tet Dominance (%)") %>%
add_row(variable = "Ble_indiv_per_ml_dominance_d", axis_name = "Ble Dominance ES") %>%
add_row(variable = "Cep_indiv_per_ml_dominance_d", axis_name = "Cep Dominance ES") %>%
add_row(variable = "Col_indiv_per_ml_dominance_d", axis_name = "Col Dominance ES") %>%
add_row(variable = "Eug_indiv_per_ml_dominance_d", axis_name = "Eug Dominance ES") %>%
add_row(variable = "Eup_indiv_per_ml_dominance_d", axis_name = "Eup Dominance ES") %>%
add_row(variable = "Lox_indiv_per_ml_dominance_d", axis_name = "Lox Dominance ES") %>%
add_row(variable = "Pau_indiv_per_ml_dominance_d", axis_name = "Pau Dominance ES") %>%
add_row(variable = "Pca_indiv_per_ml_dominance_d", axis_name = "Pca Dominance ES") %>%
add_row(variable = "Sp_indiv_per_mli_dominance_d", axis_name = "Spi Dominance ES") %>%
add_row(variable = "Spi_te_indiv_per_ml_dominance_d", axis_name = "Spi te Dominance ES") %>%
add_row(variable = "Tet_indiv_per_ml_dominance_d", axis_name = "Tet Dominance ES") %>%
add_row(variable = "dominance", axis_name = "Dominance (%)") %>%
add_row(variable = "log_abundance", axis_name = "Log Abundance + 1 (ind/mm²)") %>%
add_row(variable = "abundance_hedges_d", axis_name = "Density ES") %>%
add_row(variable = "beta_diversity_from_isolated", axis_name = "Divergence from isolated") %>%
add_row(variable = "beta_diversity_from_previous_time", axis_name = "Temporal Divergence") %>%
add_row(variable = "beta_diversity_from_previous_time_d", axis_name = "Temporal Divergence ES") %>%
add_row(variable = "evenness_pielou", axis_name = "Evenness") %>%
add_row(variable = "evenness_pielou_d", axis_name = "Evenness ES") %>%
slice(-1)
parameters_treatments = data.frame(treatment = NA,
colour = NA,
linetype = NA) %>%
add_row(treatment = "Small isolated", colour = "#bdbdbd", linetype = "solid") %>%
add_row(treatment = "Small connected to small", colour = "#feb24c", linetype = "dashed") %>%
add_row(treatment = "Small connected to large", colour = "#feb24c", linetype = "solid") %>%
add_row(treatment = "Medium isolated", colour = "#737373", linetype = "solid") %>%
add_row(treatment = "Medium connected to medium", colour = "#de2d26", linetype = "solid") %>%
add_row(treatment = "Large isolated", colour = "#000000", linetype = "solid") %>%
add_row(treatment = "Large connected to large", colour = "#3182bd", linetype = "dashed") %>%
add_row(treatment = "Large connected to small", colour = "#3182bd", linetype = "solid") %>%
add_row(treatment = "Small-Small meta-ecosystem", colour = "#fc9272", linetype = "solid") %>%
add_row(treatment = "Medium-Medium meta-ecosystem", colour = "#1b7837", linetype = "solid") %>%
add_row(treatment = "Medium-Medium isolated", colour = "#1b7837", linetype = "dashed") %>%
add_row(treatment = "Large-Large meta-ecosystem", colour = "#67000d", linetype = "solid") %>%
add_row(treatment = "Small-Large meta-ecosystem", colour = "#762a83", linetype = "solid") %>%
add_row(treatment = "Small-Large isolated", colour = "#762a83", linetype = "dashed") %>%
slice(-1)
figures_height_rmd_output = 7
legend_position = "top"
legend_width_cm = 2
size_legend = 12
size_x_axis = 13
size_y_axis = size_x_axis
boxplot_width = 2
dodging = 0.5
width_errorbar = 0.2
dodging_error_bar = 0.5
treatment_lines_linewidth = 1
treatment_points_size = 2.5
resource_flow_line_type = "solid"
resource_flow_line_colour = "#d9d9d9"
resource_flow_line_width = 0.3
zero_line_colour = "grey"
zero_line_line_type = "dotted"
zero_line_line_width = 0.5
zero_line_ES_line_type = "dotted"
zero_line_ES_colour = "grey"
zero_line_ES_line_width = 1
ggarrange_margin_top = 0
ggarrange_margin_bottom = 0
ggarrange_margin_left = 0
ggarrange_margin_right = 0
paper_width = 17.3
paper_height = 20
paper_units = "cm"
paper_res = 600
presentation_figure_size = 15
presentation_figure_width = 30
presentation_figure_height = 22
presentation_legend_size = 20
presentation_x_axis_size = 20
presentation_y_axis_size = presentation_x_axis_size
presentation_treatment_points_size = 5
presentation_treatment_linewidth = 2
presentation_figure_units = "cm"
presentation_figure_res = 600
# Modelling
first_time_point_model = 2 #Time point 2 is the first after disturbance
last_time_point_model = last_time_point
optimizer_input = 'Nelder_Mead'
method_input = ''
compar_ex = "The full and fixed models are compared to the null model."
results_table = data.frame(
Response = as.character(NA),
Levels = as.character(NA),
ΔAIC_full = NA,
p_full = NA,
ΔR2_full = NA,
ΔAIC_fix = NA,
p_fix = NA,
ΔR2_fix = NA
) %>%
slice(-1)
culture_info)This table contains information about the 110 cultures of the experiment.
# Import
culture_info = read.csv(here("data", "culture_info.csv"), header = TRUE)
In this dataset (ds_individuals) each row represents an
individual at a time point.
# Import the individual data of t0. We considered cultures to be all the same at the beginning (t0). Because of this reason, we filmed only the bottles from which cultures were assembled. Because we want to plot also t0 for the different treatments, we want to assign the video of bottles to all cultures at t0.
ds_individuals_t0_not_elongated = read.csv(here("data", "individuals", "t0.csv")) %>%
mutate(time_point = as.numeric(str_extract(time_point, "\\d+")),
day = 0,
file = as.numeric(str_extract(file, "\\d+")),
video_replicate = file) %>%
select(time_point,
day,
video_replicate,
file,
id,
N_frames,
mean_area)
ds_individuals_t0_elongated = ds_individuals_t0_not_elongated %>%
map_dfr(.x = 1 : nrow(culture_info),
.f = ~ ds_individuals_t0_not_elongated) %>%
arrange(id) %>% #Id refers to an individual
mutate(culture_ID = rep(1 : nrow(culture_info),
times = nrow(ds_individuals_t0_not_elongated))) %>%
select(time_point,
day,
video_replicate,
file,
culture_ID,
id,
N_frames,
mean_area)
expect_equal(nrow(ds_individuals_t0_not_elongated) * nrow(culture_info),
nrow(ds_individuals_t0_elongated))
#Import t1-t4
ds_individuals_t1_to_t4 = NULL
for (time_point_i in time_points_without_t0) {
ds_individuals_t1_to_t4[[time_point_i]] = read.csv(here("data",
"individuals",
paste0("t",
time_point_i,
".csv"))) %>%
mutate(time_point = as.numeric(str_extract(time_point, "\\d+")),
day = time_point_day$day[time_point_day$time_point == time_point_i],
file = as.numeric(str_extract(file, "\\d+")),
video_replicate = ceiling(file/n_cultures)) #Until 110 video replicate = 1, then 2
}
ds_individuals_t1_to_t4 = ds_individuals_t1_to_t4 %>%
bind_rows() %>%
select(time_point,
day,
video_replicate,
file,
culture_ID,
id,
N_frames,
mean_area)
# Bind t0 with t1-t4
ds_individuals = rbind(ds_individuals_t0_elongated,
ds_individuals_t1_to_t4) %>%
left_join(culture_info,
by = "culture_ID")
# Rename and select columns
ds_individuals = ds_individuals %>%
select(
disturbance,
disturbance_volume,
time_point,
day,
video_replicate,
culture_ID,
system_nr,
file,
eco_metaeco_type,
patch_size,
patch_size_volume,
metaecosystem,
metaecosystem_type,
mean_area,
N_frames
) %>%
rename(patch_size_ml = patch_size_volume,
patch_type = eco_metaeco_type,
body_area_µm2 = mean_area)
# Rename and reorder levels
ds_individuals <- ds_individuals %>%
mutate(patch_type = case_when(patch_type == "S" ~ "Small isolated",
patch_type == "M" ~ "Medium isolated",
patch_type == "L" ~ "Large isolated",
patch_type == "S (S_S)" ~ "Small connected to small",
patch_type == "S (S_L)" ~ "Small connected to large",
patch_type == "M (M_M)" ~ "Medium connected to medium",
patch_type == "L (S_L)" ~ "Large connected to small",
patch_type == "L (L_L)" ~ "Large connected to large",
TRUE ~ patch_type),
patch_type = factor(patch_type,
levels = patch_types_ordered))
ds_individuals <- ds_individuals %>%
mutate(patch_size = case_when(patch_size == "S" ~ "Small",
patch_size == "M" ~ "Medium",
patch_size == "L" ~ "Large",
TRUE ~ patch_type),
patch_size = factor(patch_size,
levels = "Small",
"Medium",
"Large"))
ds_individuals <- ds_individuals %>%
mutate(size_connected_patch = case_when(patch_type == "Small connected to small" ~ "Small",
patch_type == "Small connected to large" ~ "Large",
patch_type == "Medium connected to medium" ~ "Medium",
patch_type == "Large connected to large" ~ "Large",
patch_type == "Large connected to small" ~ "Small",
TRUE ~ NA_character_))
# Take off problematic videos
ds_individuals_before_taking_off_videos = ds_individuals
ds_individuals = ds_individuals %>%
filter(!(time_point %in% videos_to_take_off$time_point & file %in% videos_to_take_off$file))
diff = setdiff(ds_individuals_before_taking_off_videos, ds_individuals)
expect_equal(nrow(videos_to_take_off),
nrow(expand.grid(diff$culture_ID, diff$time_point, diff$file) %>% unique()))
# Take off problematic cultures
ds_individuals_before_taking_off_cultures = ds_individuals
ds_individuals = ds_individuals %>%
filter(!culture_ID %in% patches_to_take_off)
expect_equal(setdiff(ds_individuals_before_taking_off_cultures,
ds_individuals) %>%
pull(culture_ID) %>%
unique(),
patches_to_take_off)
ds_patches)In this dataset (ds_patches) each row represents a patch
at a time point. I use the data from the 40 threshold analysis for Ble,
Cep, Spi and the data from the 13 threshold analysis for all the other
protists (Col, Eup, Lox, Pau, Pca, Spi te, Tet).
# Import & bind t0 datasets.
ds_patches_t0 = read.csv(here("data", "populations", "t0.csv")) %>%
mutate(time_point = as.numeric(str_extract(time_point, "\\d+")),
day = 0,
video_replicate = file) %>%
select(time_point,
day,
video_replicate,
file,
bioarea_per_volume,
indiv_per_volume)
species_ID_13_threshold_t0 = read.csv(here("data", "species_ID_13_threshold", paste0("t0.csv"))) %>%
rename(Ble_indiv_per_volume = Ble,
Cep_indiv_per_volume = Cep,
Col_indiv_per_volume = Col,
Eug_indiv_per_volume = Eug,
Eup_indiv_per_volume = Eup,
Lox_indiv_per_volume = Lox,
Pau_indiv_per_volume = Pau,
Pca_indiv_per_volume = Pca,
Spi_indiv_per_volume = Spi,
Spi_te_indiv_per_volume = Spi_te,
Tet_indiv_per_volume = Tet) %>%
select(file,
all_of(species_IDD_with_13_threshold_indiv_per_volume))
species_ID_40_threshold_t0 = read.csv(here("data", "species_ID_40_threshold", paste0("t0.csv"))) %>%
rename(Ble_indiv_per_volume = Ble,
Cep_indiv_per_volume = Cep,
Col_indiv_per_volume = Col,
Eug_indiv_per_volume = Eug,
Eup_indiv_per_volume = Eup,
Lox_indiv_per_volume = Lox,
Pau_indiv_per_volume = Pau,
Pca_indiv_per_volume = Pca,
Spi_indiv_per_volume = Spi,
Spi_te_indiv_per_volume = Spi_te,
Tet_indiv_per_volume = Tet) %>%
select(file,
all_of(species_IDD_with_40_threshold_indiv_per_volume))
ds_patches_t0 = ds_patches_t0 %>%
left_join(species_ID_13_threshold_t0,
by = "file") %>%
left_join(species_ID_40_threshold_t0,
by = "file") %>%
mutate(file = as.numeric(str_extract(file, "\\d+")))
# Elongate t0 dataset.
ds_patches_t0_elongated <- list()
for (video_i in 1 : n_videos_taken_t0) {
single_video = ds_patches_t0 %>%
filter(file == video_i)
ds_patches_t0_elongated[[video_i]] = culture_info %>%
mutate(
time_point = 0,
day = 0,
file = single_video$file,
video_replicate = single_video$video_replicate,
bioarea_per_volume = single_video$bioarea_per_volume,
indiv_per_volume = single_video$indiv_per_volume,
Ble_indiv_per_volume = single_video$Ble_indiv_per_volume,
Cep_indiv_per_volume = single_video$Cep_indiv_per_volume,
Col_indiv_per_volume = single_video$Col_indiv_per_volume,
Eug_indiv_per_volume = single_video$Eug_indiv_per_volume,
Eup_indiv_per_volume = single_video$Eup_indiv_per_volume,
Lox_indiv_per_volume = single_video$Lox_indiv_per_volume,
Pau_indiv_per_volume = single_video$Pau_indiv_per_volume,
Pca_indiv_per_volume = single_video$Pca_indiv_per_volume,
Spi_indiv_per_volume = single_video$Spi_indiv_per_volume,
Spi_te_indiv_per_volume = single_video$Spi_te_indiv_per_volume,
Tet_indiv_per_volume = single_video$Tet_indiv_per_volume)
}
ds_patches_t0_elongated = ds_patches_t0_elongated %>%
bind_rows()
# Clean the columns of t0
ds_patches_t0 = ds_patches_t0_elongated %>%
select(
file,
time_point,
day,
culture_ID,
video_replicate,
bioarea_per_volume,
indiv_per_volume,
all_of(protist_species_indiv_per_volume))
expect_equal(nrow(ds_patches_t0), sum(n_videos_taken_t0 * n_cultures))
# Import and bind t1-t4
ds_patches_t1_to_t4 = NULL
for (time_point_i in time_points_without_t0) {
species_ID_13_threshold = read.csv(here("data",
"species_ID_13_threshold",
paste0("t", time_point_i, ".csv"))) %>%
rename(Ble_indiv_per_volume = Ble,
Cep_indiv_per_volume = Cep,
Col_indiv_per_volume = Col,
Eug_indiv_per_volume = Eug,
Eup_indiv_per_volume = Eup,
Lox_indiv_per_volume = Lox,
Pau_indiv_per_volume = Pau,
Pca_indiv_per_volume = Pca,
Spi_indiv_per_volume = Spi,
Spi_te_indiv_per_volume = Spi_te,
Tet_indiv_per_volume = Tet) %>%
select(file,
all_of(species_IDD_with_13_threshold_indiv_per_volume))
species_ID_40_threshold = read.csv(here("data",
"species_ID_40_threshold",
paste0("t", time_point_i, ".csv"))) %>%
rename(Ble_indiv_per_volume = Ble,
Cep_indiv_per_volume = Cep,
Col_indiv_per_volume = Col,
Eug_indiv_per_volume = Eug,
Eup_indiv_per_volume = Eup,
Lox_indiv_per_volume = Lox,
Pau_indiv_per_volume = Pau,
Pca_indiv_per_volume = Pca,
Spi_indiv_per_volume = Spi,
Spi_te_indiv_per_volume = Spi_te,
Tet_indiv_per_volume = Tet) %>%
select(file,
all_of(species_IDD_with_40_threshold_indiv_per_volume))
ds_patches_t1_to_t4[[time_point_i]] = read.csv(here("data",
"populations",
paste0("t", time_point_i, ".csv"))) %>%
arrange(file) %>%
mutate(video_replicate = rep(1 : time_point_day$video_replicates[time_point_i+1],
each = n_cultures),
day = time_point_day$day[time_point_day$time_point == time_point_i]) %>%
select(
file,
time_point,
day,
video_replicate,
file,
culture_ID,
bioarea_per_volume,
indiv_per_volume)
ds_patches_t1_to_t4[[time_point_i]] = ds_patches_t1_to_t4[[time_point_i]] %>%
left_join(species_ID_13_threshold,
by = "file") %>%
left_join(species_ID_40_threshold,
by = "file")
}
ds_patches_t1_to_t4 = ds_patches_t1_to_t4 %>%
bind_rows()
# Bind t0 with t1-t4
ds_patches = rbind(ds_patches_t0,
ds_patches_t1_to_t4) %>%
left_join(culture_info,
by = "culture_ID")
expect_equal(nrow(ds_patches),
sum(sum(time_point_day$video_replicates) * n_cultures))
# Reorder and rename columns
ds_patches = ds_patches %>%
rename(patch_size_ml = patch_size_volume) %>%
select(
file,
time_point,
day,
disturbance,
culture_ID,
system_nr,
eco_metaeco_type,
patch_size,
patch_size_ml,
metaecosystem,
metaecosystem_type,
video_replicate,
bioarea_per_volume,
indiv_per_volume,
all_of(protist_species_indiv_per_volume)
) %>%
rename(patch_type = eco_metaeco_type,
bioarea_µm2_per_μL = bioarea_per_volume) %>%
rename_all( ~ gsub("volume", "μL", .))
# Rename and reorder levels
ds_patches <- ds_patches %>%
mutate(
patch_type = case_when(
patch_type == "S" ~ "Small isolated",
patch_type == "M" ~ "Medium isolated",
patch_type == "L" ~ "Large isolated",
patch_type == "S (S_S)" ~ "Small connected to small",
patch_type == "S (S_L)" ~ "Small connected to large",
patch_type == "M (M_M)" ~ "Medium connected to medium",
patch_type == "L (S_L)" ~ "Large connected to small",
patch_type == "L (L_L)" ~ "Large connected to large",
TRUE ~ patch_type
),
patch_type = factor(x = patch_type,
levels = patch_types_ordered),
patch_size = case_when(
patch_size == "S" ~ "Small",
patch_size == "M" ~ "Medium",
patch_size == "L" ~ "Large",
TRUE ~ patch_size
),
metaecosystem_type = case_when(
metaecosystem_type == "S_S" ~ "Small-Small meta-ecosystem",
metaecosystem_type == "M_M" ~ "Medium-Medium meta-ecosystem",
metaecosystem_type == "L_L" ~ "Large-Large meta-ecosystem",
metaecosystem_type == "S_L" ~ "Small-Large meta-ecosystem",
TRUE ~ metaecosystem_type
),
size_connected_patch = case_when(
patch_type == "Small connected to small" ~ "Small",
patch_type == "Small connected to large" ~ "Large",
patch_type == "Medium connected to medium" ~ "Medium",
patch_type == "Large connected to large" ~ "Large",
patch_type == "Large connected to small" ~ "Small",
TRUE ~ NA_character_
),
time_point = as.numeric(str_extract(time_point, "\\d+")),
file = as.numeric(str_extract(file, "\\d+")),
)
# Change units of measurments to ml
ds_patches = ds_patches %>%
mutate(bioarea_µm2_per_ml = bioarea_µm2_per_μL * 10^3,
bioarea_mm2_per_ml = bioarea_µm2_per_ml * 10^(-6),
Ble_indiv_per_ml = Ble_indiv_per_μL * 10^3,
Cep_indiv_per_ml = Cep_indiv_per_μL * 10^3,
Col_indiv_per_ml = Col_indiv_per_μL * 10^3,
Eug_indiv_per_ml = Eug_indiv_per_μL * 10^3,
Eup_indiv_per_ml = Eup_indiv_per_μL * 10^3,
Lox_indiv_per_ml = Lox_indiv_per_μL * 10^3,
Pau_indiv_per_ml = Pau_indiv_per_μL * 10^3,
Pca_indiv_per_ml = Pca_indiv_per_μL * 10^3,
Spi_indiv_per_ml = Spi_indiv_per_μL * 10^3,
Spi_te_indiv_per_ml = Spi_te_indiv_per_μL * 10^3,
Tet_indiv_per_ml = Tet_indiv_per_μL * 10^3)
# Take off problematic videos
ds_patches_before_taking_off_videos = ds_patches
ds_patches = ds_patches %>%
filter(!(time_point %in% videos_to_take_off$time_point & file %in% videos_to_take_off$file))
diff = setdiff(ds_patches_before_taking_off_videos, ds_patches)
expect_equal(nrow(videos_to_take_off),
nrow(expand.grid(diff$culture_ID, diff$time_point, diff$file) %>% unique()))
# Take off problematic cultures
ds_patches_before_taking_off_cultures = ds_patches
ds_patches = ds_patches %>%
filter(!culture_ID %in% patches_to_take_off)
expect_equal(setdiff(ds_patches_before_taking_off_cultures,
ds_patches) %>%
pull(culture_ID) %>%
unique(),
patches_to_take_off)
# Average videos
ds_patches = ds_patches %>%
group_by(across(all_of(columns_patches))) %>%
summarise(across(contains("_per_ml"), mean),
across(contains("_tot"), mean)) %>%
ungroup()
expect_equal(nrow(ds_patches),
(n_cultures - length(patches_to_take_off)) * length(time_points))
# Add connection and individuals
ds_patches = ds_patches %>%
mutate(indiv_per_ml = !!rlang::parse_expr(paste(protist_species_indiv_per_ml,
collapse = " + ")))
ds_patches = ds_patches %>%
mutate(connection = ifelse(str_detect(patch_type, "isolated"),
"isolated",
"connected"),
connection = factor(x = connection,
levels = c("isolated", "connected")))
# Calculate total response variable for the whole patch
ds_patches = ds_patches %>%
mutate(bioarea_tot_mm2 = bioarea_mm2_per_ml * patch_size_ml,
indiv_tot = indiv_per_ml * patch_size_ml,
Ble_tot_indiv = Ble_indiv_per_ml * patch_size_ml,
Cep_tot_indiv = Cep_indiv_per_ml * patch_size_ml,
Col_tot_indiv = Col_indiv_per_ml * patch_size_ml,
Eug_tot_indiv = Eug_indiv_per_ml * patch_size_ml,
Eup_tot_indiv = Eup_indiv_per_ml * patch_size_ml,
Lox_tot_indiv = Lox_indiv_per_ml * patch_size_ml,
Pau_tot_indiv = Pau_indiv_per_ml * patch_size_ml,
Pca_tot_indiv = Pca_indiv_per_ml * patch_size_ml,
Spi_tot_indiv = Spi_indiv_per_ml * patch_size_ml,
Spi_te_tot_indiv = Spi_te_indiv_per_ml * patch_size_ml,
Tet_tot_indiv = Tet_indiv_per_ml * patch_size_ml)
# Calculate species dominance
ds_patches = ds_patches %>%
mutate(across(.cols = all_of(protist_species_indiv_per_ml),
.fns = list(dominance = ~ (. / indiv_per_ml) * 100),
.names = "{col}_dominance"))
expect_equal(unique(ds_patches$Ble_indiv_per_ml_dominance[ds_patches$indiv_per_ml == 0]), NaN)
if (FALSE %in% unique((ds_patches$Ble_indiv_per_ml/ds_patches$indiv_per_ml) *100 == ds_patches$Ble_indiv_per_ml_dominance)) stop()
# Calculate alpha diversity (Shannon, Simpson, Inverse Simpson, Evenness)
n_rows_ds_patches_before_calculating_alpha = nrow(ds_patches)
ds_patches = calculate.alpha.diversity()
expect_equal(max(ds_patches$species_richness),
length(protist_species))
expect_equal(nrow(ds_patches),
n_rows_ds_patches_before_calculating_alpha)
# Calculate median body size
n_rows_ds_patches_before_median_size = nrow(ds_patches)
ds_median_body_size = ds_individuals %>%
group_by(time_point,
culture_ID,
file) %>%
summarise(median_body_area_µm2 = median(body_area_µm2)) %>%
group_by(time_point,
culture_ID) %>%
summarise(median_body_area_µm2 = mean(median_body_area_µm2))
expect_true(nrow(ds_median_body_size) <= nrow(ds_patches)) #Ds median body size could be less because some cultures might be crashed and not have any individual.
ds_patches_before_full_join = ds_patches
ds_patches = full_join(ds_patches, ds_median_body_size)
expect_equal(nrow(ds_patches),
n_rows_ds_patches_before_median_size)
ds_patches_effect_size)In this dataset (ds_patches_effect_size) each row
represents a treatment at a time point. It contains the effect size of
the connection of a patch (connected vs isolated).
# Calculate the mean & sd of response variables for each treatment/control at each time point
ds_patches_effect_size = NULL
variable_nr = 0
for (variable_i in variables_patches) {
variable_nr = variable_nr + 1
ds_patches_effect_size[[variable_nr]] = ds_patches %>%
filter(time_point >= 1,
!is.na(!!sym(variable_i))) %>%
group_by(across(all_of(columns_patches[columns_patches != "culture_ID" &
columns_patches != "system_nr"]))) %>%
summarise(across(all_of(variable_i),
list(mean = mean,
sd = sd)),
sample_size = n()) %>%
rename_with( ~ paste0(variable_i, "_sample_size"),
matches("sample_size"))
}
ds_patches_effect_size <- reduce(ds_patches_effect_size,
full_join,
by = columns_patches[columns_patches != "culture_ID" &
columns_patches != "system_nr"])
expect_equal(nrow(ds_patches_effect_size),
n_patch_types * (n_time_points-1) * n_disturbance_levels)
# Calculate the effect size (Hedge's d) for each treatment at each time point
for (variable_i in variables_patches) {
ds_patches_effect_size <- ds_patches_effect_size %>%
mutate(
!!paste0(variable_i, "_d") := NA,
!!paste0(variable_i, "_d_upper") := NA,
!!paste0(variable_i, "_d_lower") := NA
)
}
row_n = 0
for (treatment_input in treatments_and_controls$treatment) {
for (time_point_input in time_points) {
row_n = row_n + 1
control_input = treatments_and_controls$control[
treatments_and_controls$treatment == treatment_input
]
treatment_row = ds_patches_effect_size %>%
filter(patch_type == treatment_input,
time_point == time_point_input)
control_row = ds_patches_effect_size %>%
filter(patch_type == control_input,
time_point == time_point_input)
for (response_variable in variables_patches) {
hedges_d = calculate.hedges_d(
treatment_row[[paste0(response_variable, "_mean")]],
treatment_row[[paste0(response_variable, "_sd")]],
treatment_row[[paste0(response_variable, "_sample_size")]],
control_row[[paste0(response_variable, "_mean")]],
control_row[[paste0(response_variable, "_sd")]],
control_row[[paste0(response_variable, "_sample_size")]]
)
ds_patches_effect_size[[paste0(response_variable, "_d")]][
ds_patches_effect_size$patch_type == treatment_input &
ds_patches_effect_size$time_point == time_point_input] =
hedges_d$d
ds_patches_effect_size[[paste0(response_variable, "_d_upper")]][
ds_patches_effect_size$patch_type == treatment_input &
ds_patches_effect_size$time_point == time_point_input] =
hedges_d$upper_CI
ds_patches_effect_size[[paste0(response_variable, "_d_lower")]][
ds_patches_effect_size$patch_type == treatment_input &
ds_patches_effect_size$time_point == time_point_input] =
hedges_d$lower_CI
}
}
}
expect_equal(nrow(ds_patches_effect_size),
n_patch_types * (n_time_points-1) * n_disturbance_levels)
ds_metaecosystems)In this dataset (ds_metaecosystems) each row represents
a meta-ecosystem or a two-patch isolated system at a time point.
#Find combinations of patches in isolated two-patch systems.
ID_isolated_S_low = ds_patches %>%
filter(patch_type == "Small isolated",
disturbance == "low") %>%
pull(culture_ID) %>%
unique()
ID_isolated_L_low = ds_patches %>%
filter(patch_type == "Large isolated",
disturbance == "low") %>%
pull(culture_ID) %>%
unique()
ID_isolated_S_high = ds_patches %>%
filter(patch_type == "Small isolated",
disturbance == "high") %>%
pull(culture_ID) %>%
unique()
ID_isolated_L_high = ds_patches %>%
filter(patch_type == "Large isolated",
disturbance == "high") %>%
pull(culture_ID) %>%
unique()
ID_isolated_M_low = ds_patches %>%
filter(patch_type == "Medium isolated",
disturbance == "low") %>%
pull(culture_ID) %>%
unique()
ID_isolated_M_high = ds_patches %>%
filter(patch_type == "Medium isolated",
disturbance == "high") %>%
pull(culture_ID) %>%
unique()
combinations_S_and_L_low = crossing(ID_isolated_S_low,
ID_isolated_L_low) %>%
mutate(disturbance = "low",
metaecosystem_type = "Small-Large isolated") %>%
rename(ID_first_patch = ID_isolated_S_low,
ID_second_patch = ID_isolated_L_low) %>%
select(disturbance,
metaecosystem_type,
ID_first_patch,
ID_second_patch)
expect_equal(nrow(combinations_S_and_L_low),
length(ID_isolated_S_low) * length(ID_isolated_L_low))
combinations_S_and_L_high = crossing(ID_isolated_S_high,
ID_isolated_L_high) %>%
mutate(disturbance = "high",
metaecosystem_type = "Small-Large isolated") %>%
rename(ID_first_patch = ID_isolated_S_high,
ID_second_patch = ID_isolated_L_high) %>%
select(disturbance,
metaecosystem_type,
ID_first_patch,
ID_second_patch)
expect_equal(nrow(combinations_S_and_L_high),
length(ID_isolated_S_high) * length(ID_isolated_L_high))
combinations_M_and_M_low = combinat::combn(ID_isolated_M_low,
m = 2) %>%
t() %>%
as.data.frame() %>%
rename(ID_first_patch = V1,
ID_second_patch = V2) %>%
mutate(disturbance = "low",
metaecosystem_type = "Medium-Medium isolated") %>%
select(disturbance,
metaecosystem_type,
ID_first_patch,
ID_second_patch)
expect_equal(nrow(combinations_M_and_M_low),
sum(seq(length(ID_isolated_M_low) - 1)))
combinations_M_and_M_high = combinat::combn(ID_isolated_M_high,
m = 2) %>%
t() %>%
as.data.frame() %>%
rename(ID_first_patch = V1,
ID_second_patch = V2) %>%
mutate(disturbance = "high",
metaecosystem_type = "Medium-Medium isolated") %>%
select(disturbance,
metaecosystem_type,
ID_first_patch,
ID_second_patch)
expect_equal(nrow(combinations_M_and_M_high),
sum(seq(length(ID_isolated_M_high) - 1)))
combinations_isolated_systems = rbind(combinations_S_and_L_low,
combinations_S_and_L_high,
combinations_M_and_M_low,
combinations_M_and_M_high) %>%
mutate(system_nr = 1001:(1000 + nrow(.))) %>%
select(system_nr,
disturbance,
metaecosystem_type,
ID_first_patch,
ID_second_patch)
#Find combinations of patches in meta-ecosystems.
combinations_metaecos = ds_patches %>%
filter(time_point == 0,
metaecosystem == "yes") %>%
select(system_nr,
disturbance,
metaecosystem_type,
culture_ID) %>%
group_by(system_nr,
disturbance,
metaecosystem_type) %>%
summarise(ID_first_patch = (mean(culture_ID) - 0.5),
ID_second_patch = (mean(culture_ID) + 0.5)) %>%
as.data.frame()
#Bind isolated systems and meta-ecosystems
combinations_isolated_n_metaecos = rbind(combinations_isolated_systems,
combinations_metaecos) %>%
mutate(connection = ifelse(metaecosystem_type %in% c("Medium-Medium isolated",
"Small-Large isolated"),
yes = "isolated",
no = "connected"),
patches_combined = paste0(ID_first_patch, "|", ID_second_patch))
n_patches_combinations = nrow(combinations_isolated_n_metaecos)
expect_equal(nrow(combinations_isolated_n_metaecos),
nrow(combinations_isolated_systems) + nrow(combinations_metaecos))
#Create combination sets for SL isolated where each sets contains each patch only one time. To find all combinations where all the patches are included, but only one at the time, I keep the small patches on the same order, but then I perform a permutation of the order in which large patches are arranged and coupled to the small patches.
disturbance_nr = 0
SL_isolated_sys_sets <- vector("list",
length(disturbance_levels))
for (disturbance_input in disturbance_levels) {
concat_permutations_large = NULL
disturbance_nr = disturbance_nr + 1
#Find culture ID of small and large patches
ID_small_patches = ds_patches %>%
filter(disturbance == disturbance_input,
patch_type == "Small isolated") %>%
pull(culture_ID) %>%
unique()
ID_large_patches = ds_patches %>%
filter(disturbance == disturbance_input,
patch_type == "Large isolated") %>%
pull(culture_ID) %>%
unique()
#Force small and large patches vectors to have the same length
if (length(ID_large_patches) < length(ID_small_patches)) {
ID_large_patches = c(ID_large_patches,
rep(
"Patch taken off",
times = length(ID_small_patches) - length(ID_large_patches)
))
}
if (length(ID_small_patches) < length(ID_large_patches)) {
ID_small_patches = c(ID_small_patches,
rep(
"Patch taken off",
times = length(ID_large_patches) - length(ID_small_patches)
))
}
#Create vector with large patches
permutations_large = permn(ID_large_patches)
for (list_element in 1:length(permutations_large)) {
concat_permutations_large = c(concat_permutations_large,
permutations_large[[list_element]])
}
vector_large_patches = concat_permutations_large
#Create vector with small patches
vector_small_patches = rep(ID_small_patches,
times = length(permutations_large))
#Create vector with sets
vector_sets = rep(1:length(permutations_large),
each = length(ID_small_patches))
#Bind vectors together into the isolated SL system sets (SL_isolated_sys_sets)
SL_isolated_sys_sets[[disturbance_nr]]$ID_small_patches = vector_small_patches
SL_isolated_sys_sets[[disturbance_nr]]$ID_large_patches = vector_large_patches
SL_isolated_sys_sets[[disturbance_nr]]$set = vector_sets
expect_equal(
length(SL_isolated_sys_sets[[disturbance_nr]]$ID_small_patches),
length(ID_small_patches) * length(permutations_large)
)
expect_equal(
length(SL_isolated_sys_sets[[disturbance_nr]]$ID_large_patches),
length(ID_large_patches) * length(permutations_large)
)
expect_equal(
length(SL_isolated_sys_sets[[disturbance_nr]]$set),
length(ID_small_patches) * length(permutations_large)
)
#Finalise the dataset with isolated SL system sets (SL_isolated_sys_sets)
SL_isolated_sys_sets[[disturbance_nr]] = SL_isolated_sys_sets[[disturbance_nr]] %>%
as.data.frame() %>%
mutate(
disturbance = disturbance_input,
metaecosystem_type = "Small-Large isolated",
connection = "isolated"
) %>%
rename(ID_first_patch = ID_small_patches,
ID_second_patch = ID_large_patches) %>%
select(disturbance,
metaecosystem_type,
ID_first_patch,
ID_second_patch,
connection,
set)
expect_equal(
nrow(SL_isolated_sys_sets[[disturbance_nr]]),
length(ID_small_patches) * length(permutations_large)
)
SL_isolated_sys_sets[[disturbance_nr]] = SL_isolated_sys_sets[[disturbance_nr]] %>%
filter(!ID_first_patch == "Patch taken off",
!ID_second_patch == "Patch taken off") %>%
mutate(
ID_first_patch = as.double(ID_first_patch),
ID_second_patch = as.double(ID_second_patch)
)
#Add to the SL_isolated_sys_sets the system nr
SL_isolated_sys_rows_to_be_joined = combinations_isolated_n_metaecos %>%
filter(disturbance == disturbance_input,
metaecosystem_type == "Small-Large isolated")
SL_isolated_sys_sets[[disturbance_nr]] = full_join(SL_isolated_sys_sets[[disturbance_nr]],
SL_isolated_sys_rows_to_be_joined)
}
#Bind high and low disturbances
SL_isolated_sys_sets_bound = SL_isolated_sys_sets %>%
bind_rows()
expect_equal(
nrow(SL_isolated_sys_sets_bound),
nrow(SL_isolated_sys_sets[[1]]) + nrow(SL_isolated_sys_sets[[2]])
)
expect_equal(
length(
SL_isolated_sys_sets_bound %>%
pull(system_nr) %>%
unique()
),
length(
combinations_isolated_n_metaecos %>%
filter(metaecosystem_type == "Small-Large isolated") %>%
pull(system_nr) %>%
unique()
)
)
#Recall in a better way
SL_isolated_sys_sets = SL_isolated_sys_sets_bound
#Create combination sets for MM isolated where each sets contains each patch only one time. To find all combinations where all the patches are included, but only one at the time, I ...
disturbance_nr = 0
MM_isolated_sys_sets <- vector("list",
length(disturbance_levels))
#Find all the combination sets
for (disturbance_input in disturbance_levels) {
disturbance_nr = disturbance_nr + 1
#Find culture ID of medium patches
ID_medium_patches = ds_patches %>%
filter(disturbance == disturbance_input,
patch_type == "Medium isolated") %>%
pull(culture_ID) %>%
unique()
#Find pairwise combinations
MM_isolated_sys = combn(ID_medium_patches,
2) %>%
t()
n_MM_isolated_sys = nrow(MM_isolated_sys)
#Find all the possible sets of combinations
MM_isolated_sys_sets[[disturbance_nr]] = matrix(nrow = 10 ^ 4,
ncol = 4)
matrix_row = 0
for (first_system_n in 1:n_MM_isolated_sys) {
#Find culture IDs of the first system
first_system = MM_isolated_sys[first_system_n, ]
for (second_system_n in 1:n_MM_isolated_sys) {
#Find culture IDs of the second system
second_system = MM_isolated_sys[second_system_n, ]
shared_elements_first_n_second_system = intersect(first_system,
second_system)
if (length(shared_elements_first_n_second_system) == 0) {
matrix_row = matrix_row + 1
#Make first and second system into a set
MM_isolated_sys_sets[[disturbance_nr]][matrix_row,] = c(first_system,
second_system)
}
}
}
#Tidy the dataset with all the patch combinations
MM_isolated_sys_sets[[disturbance_nr]] = MM_isolated_sys_sets[[disturbance_nr]] %>%
as.data.frame() %>%
drop_na()
expect_equal(
MM_isolated_sys_sets[[disturbance_nr]] %>%
filter(V1 == V2 | V1 == V3 | V1 == V4 | V2 == V3 | V2 == V4 | V3 == V4) %>%
nrow(),
0
)
#Reorder the dataset with all the patch combinations
MM_isolated_sys_sets_reordered = data.frame(
ID_first_patch = NA,
ID_second_patch = NA,
set = NA
)
n_sets = nrow(MM_isolated_sys_sets[[disturbance_nr]])
for (set_input in 1:n_sets) {
MM_isolated_sys_sets_reordered = MM_isolated_sys_sets_reordered %>%
add_row(
ID_first_patch = MM_isolated_sys_sets[[disturbance_nr]][set_input, 1],
ID_second_patch = MM_isolated_sys_sets[[disturbance_nr]][set_input, 2],
set = set_input
) %>%
add_row(
ID_first_patch = MM_isolated_sys_sets[[disturbance_nr]][set_input, 3],
ID_second_patch = MM_isolated_sys_sets[[disturbance_nr]][set_input, 4],
set = set_input
)
}
#Add to a list
MM_isolated_sys_sets[[disturbance_nr]] = MM_isolated_sys_sets_reordered %>%
drop_na() %>%
mutate(
disturbance = disturbance_input,
metaecosystem_type = "Medium-Medium isolated",
connection = "isolated"
)
#Add system nr
ID_combinations_MM_isolated = combinations_isolated_n_metaecos %>%
filter(disturbance == disturbance_input,
metaecosystem_type == "Medium-Medium isolated")
MM_isolated_sys_sets[[disturbance_nr]] = full_join(MM_isolated_sys_sets[[disturbance_nr]],
ID_combinations_MM_isolated)
}
#Bind all sets of MM isolated
MM_isolated_sys_sets = MM_isolated_sys_sets %>%
bind_rows()
expect_equal(
length(MM_isolated_sys_sets %>%
pull(system_nr) %>%
unique()),
length(
combinations_isolated_n_metaecos %>%
filter(metaecosystem_type == "Medium-Medium isolated") %>%
pull(system_nr) %>%
unique()
)
)
#Bind SL and MM isolated systems
isolated_combinations_sets = rbind(SL_isolated_sys_sets,
MM_isolated_sys_sets) %>%
select(disturbance,
metaecosystem_type,
connection,
set,
system_nr,
ID_first_patch,
ID_second_patch)
Each row is a meta-ecosystem.
It contains also “fake” meta-ecosystems which I created from
isolated patches (metaecosystem type = Small-Large isolated
&
metaecosystem type = Medium-Medium isolated).
Warning appear after the following code, as:
#Create the ds_metaecosystem dataset
ds_metaecosystems = create.meatecosystem.ds()
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): missing
## values in results
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "bray"): missing values
## in results
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): missing
## values in results
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "bray"): missing values
## in results
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
expect_equal(nrow(ds_metaecosystems),
n_time_points * n_patches_combinations)
#Add column connection
ds_metaecosystems$connection <-
ifelse(
ds_metaecosystems$metaecosystem_type %in% c("Medium-Medium isolated",
"Small-Large isolated"),
yes = "isolated",
no = "connected"
)
#Add column patch size symmetry
ds_metaecosystems$patch_size_symmetry <-
ifelse(
ds_metaecosystems$metaecosystem_type %in% c("Small-Large isolated",
"Small-Large meta-ecosystem"),
yes = "asymmetric",
no = "symmetric"
)
#Reorder the meta-ecosystems
ds_metaecosystems = ds_metaecosystems %>%
mutate(metaecosystem_type = factor(metaecosystem_type,
levels = metaecosystem_types_ordered))
#Add baselines. See ds_patches for an explanation.
baselines <- ds_metaecosystems %>%
filter(time_point == 1) %>%
group_by(system_nr) %>%
summarise(across(all_of(variables_metaecos), .names = "baseline_{.col}"))
n_rows_ds_metaecosystems_before_join = nrow(ds_metaecosystems)
ds_metaecosystems = full_join(ds_metaecosystems, baselines)
expect_equal(nrow(ds_metaecosystems),
n_rows_ds_metaecosystems_before_join)
#Join ...
full_join(ds_metaecosystems,
isolated_combinations_sets)
## Warning in full_join(ds_metaecosystems, isolated_combinations_sets): Detected an unexpected many-to-many relationship between `x` and `y`.
## ℹ Row 1 of `x` matches multiple rows in `y`.
## ℹ Row 1 of `y` matches multiple rows in `x`.
## ℹ If a many-to-many relationship is expected, set `relationship =
## "many-to-many"` to silence this warning.
## time_point day system_nr patches_combined disturbance metaecosystem_type
## 1 0 0 1001 1|11 low Small-Large isolated
## 2 0 0 1001 1|11 low Small-Large isolated
## 3 0 0 1001 1|11 low Small-Large isolated
## 4 0 0 1001 1|11 low Small-Large isolated
## 5 0 0 1001 1|11 low Small-Large isolated
## 6 0 0 1001 1|11 low Small-Large isolated
## 7 0 0 1001 1|11 low Small-Large isolated
## 8 0 0 1001 1|11 low Small-Large isolated
## 9 0 0 1001 1|11 low Small-Large isolated
## 10 0 0 1001 1|11 low Small-Large isolated
## 11 0 0 1001 1|11 low Small-Large isolated
## 12 0 0 1001 1|11 low Small-Large isolated
## 13 0 0 1001 1|11 low Small-Large isolated
## 14 0 0 1001 1|11 low Small-Large isolated
## 15 0 0 1001 1|11 low Small-Large isolated
## 16 0 0 1001 1|11 low Small-Large isolated
## 17 0 0 1001 1|11 low Small-Large isolated
## 18 0 0 1001 1|11 low Small-Large isolated
## 19 0 0 1001 1|11 low Small-Large isolated
## 20 0 0 1001 1|11 low Small-Large isolated
## 21 0 0 1001 1|11 low Small-Large isolated
## 22 0 0 1001 1|11 low Small-Large isolated
## 23 0 0 1001 1|11 low Small-Large isolated
## 24 0 0 1001 1|11 low Small-Large isolated
## 25 1 4 1001 1|11 low Small-Large isolated
## 26 1 4 1001 1|11 low Small-Large isolated
## 27 1 4 1001 1|11 low Small-Large isolated
## 28 1 4 1001 1|11 low Small-Large isolated
## 29 1 4 1001 1|11 low Small-Large isolated
## 30 1 4 1001 1|11 low Small-Large isolated
## 31 1 4 1001 1|11 low Small-Large isolated
## 32 1 4 1001 1|11 low Small-Large isolated
## 33 1 4 1001 1|11 low Small-Large isolated
## 34 1 4 1001 1|11 low Small-Large isolated
## 35 1 4 1001 1|11 low Small-Large isolated
## 36 1 4 1001 1|11 low Small-Large isolated
## 37 1 4 1001 1|11 low Small-Large isolated
## 38 1 4 1001 1|11 low Small-Large isolated
## 39 1 4 1001 1|11 low Small-Large isolated
## 40 1 4 1001 1|11 low Small-Large isolated
## 41 1 4 1001 1|11 low Small-Large isolated
## 42 1 4 1001 1|11 low Small-Large isolated
## 43 1 4 1001 1|11 low Small-Large isolated
## 44 1 4 1001 1|11 low Small-Large isolated
## 45 1 4 1001 1|11 low Small-Large isolated
## 46 1 4 1001 1|11 low Small-Large isolated
## 47 1 4 1001 1|11 low Small-Large isolated
## 48 1 4 1001 1|11 low Small-Large isolated
## 49 2 8 1001 1|11 low Small-Large isolated
## 50 2 8 1001 1|11 low Small-Large isolated
## 51 2 8 1001 1|11 low Small-Large isolated
## 52 2 8 1001 1|11 low Small-Large isolated
## 53 2 8 1001 1|11 low Small-Large isolated
## 54 2 8 1001 1|11 low Small-Large isolated
## 55 2 8 1001 1|11 low Small-Large isolated
## 56 2 8 1001 1|11 low Small-Large isolated
## 57 2 8 1001 1|11 low Small-Large isolated
## 58 2 8 1001 1|11 low Small-Large isolated
## 59 2 8 1001 1|11 low Small-Large isolated
## 60 2 8 1001 1|11 low Small-Large isolated
## 61 2 8 1001 1|11 low Small-Large isolated
## 62 2 8 1001 1|11 low Small-Large isolated
## 63 2 8 1001 1|11 low Small-Large isolated
## 64 2 8 1001 1|11 low Small-Large isolated
## 65 2 8 1001 1|11 low Small-Large isolated
## 66 2 8 1001 1|11 low Small-Large isolated
## 67 2 8 1001 1|11 low Small-Large isolated
## 68 2 8 1001 1|11 low Small-Large isolated
## 69 2 8 1001 1|11 low Small-Large isolated
## 70 2 8 1001 1|11 low Small-Large isolated
## 71 2 8 1001 1|11 low Small-Large isolated
## 72 2 8 1001 1|11 low Small-Large isolated
## 73 3 12 1001 1|11 low Small-Large isolated
## 74 3 12 1001 1|11 low Small-Large isolated
## 75 3 12 1001 1|11 low Small-Large isolated
## 76 3 12 1001 1|11 low Small-Large isolated
## 77 3 12 1001 1|11 low Small-Large isolated
## 78 3 12 1001 1|11 low Small-Large isolated
## 79 3 12 1001 1|11 low Small-Large isolated
## 80 3 12 1001 1|11 low Small-Large isolated
## 81 3 12 1001 1|11 low Small-Large isolated
## 82 3 12 1001 1|11 low Small-Large isolated
## 83 3 12 1001 1|11 low Small-Large isolated
## 84 3 12 1001 1|11 low Small-Large isolated
## 85 3 12 1001 1|11 low Small-Large isolated
## 86 3 12 1001 1|11 low Small-Large isolated
## 87 3 12 1001 1|11 low Small-Large isolated
## 88 3 12 1001 1|11 low Small-Large isolated
## 89 3 12 1001 1|11 low Small-Large isolated
## 90 3 12 1001 1|11 low Small-Large isolated
## 91 3 12 1001 1|11 low Small-Large isolated
## 92 3 12 1001 1|11 low Small-Large isolated
## 93 3 12 1001 1|11 low Small-Large isolated
## 94 3 12 1001 1|11 low Small-Large isolated
## 95 3 12 1001 1|11 low Small-Large isolated
## 96 3 12 1001 1|11 low Small-Large isolated
## 97 4 16 1001 1|11 low Small-Large isolated
## 98 4 16 1001 1|11 low Small-Large isolated
## 99 4 16 1001 1|11 low Small-Large isolated
## 100 4 16 1001 1|11 low Small-Large isolated
## 101 4 16 1001 1|11 low Small-Large isolated
## 102 4 16 1001 1|11 low Small-Large isolated
## 103 4 16 1001 1|11 low Small-Large isolated
## 104 4 16 1001 1|11 low Small-Large isolated
## 105 4 16 1001 1|11 low Small-Large isolated
## 106 4 16 1001 1|11 low Small-Large isolated
## 107 4 16 1001 1|11 low Small-Large isolated
## 108 4 16 1001 1|11 low Small-Large isolated
## 109 4 16 1001 1|11 low Small-Large isolated
## 110 4 16 1001 1|11 low Small-Large isolated
## 111 4 16 1001 1|11 low Small-Large isolated
## 112 4 16 1001 1|11 low Small-Large isolated
## 113 4 16 1001 1|11 low Small-Large isolated
## 114 4 16 1001 1|11 low Small-Large isolated
## 115 4 16 1001 1|11 low Small-Large isolated
## 116 4 16 1001 1|11 low Small-Large isolated
## 117 4 16 1001 1|11 low Small-Large isolated
## 118 4 16 1001 1|11 low Small-Large isolated
## 119 4 16 1001 1|11 low Small-Large isolated
## 120 4 16 1001 1|11 low Small-Large isolated
## 121 5 20 1001 1|11 low Small-Large isolated
## 122 5 20 1001 1|11 low Small-Large isolated
## 123 5 20 1001 1|11 low Small-Large isolated
## 124 5 20 1001 1|11 low Small-Large isolated
## 125 5 20 1001 1|11 low Small-Large isolated
## 126 5 20 1001 1|11 low Small-Large isolated
## 127 5 20 1001 1|11 low Small-Large isolated
## 128 5 20 1001 1|11 low Small-Large isolated
## 129 5 20 1001 1|11 low Small-Large isolated
## 130 5 20 1001 1|11 low Small-Large isolated
## 131 5 20 1001 1|11 low Small-Large isolated
## 132 5 20 1001 1|11 low Small-Large isolated
## 133 5 20 1001 1|11 low Small-Large isolated
## 134 5 20 1001 1|11 low Small-Large isolated
## 135 5 20 1001 1|11 low Small-Large isolated
## 136 5 20 1001 1|11 low Small-Large isolated
## 137 5 20 1001 1|11 low Small-Large isolated
## 138 5 20 1001 1|11 low Small-Large isolated
## 139 5 20 1001 1|11 low Small-Large isolated
## 140 5 20 1001 1|11 low Small-Large isolated
## 141 5 20 1001 1|11 low Small-Large isolated
## 142 5 20 1001 1|11 low Small-Large isolated
## 143 5 20 1001 1|11 low Small-Large isolated
## 144 5 20 1001 1|11 low Small-Large isolated
## 145 6 24 1001 1|11 low Small-Large isolated
## 146 6 24 1001 1|11 low Small-Large isolated
## 147 6 24 1001 1|11 low Small-Large isolated
## 148 6 24 1001 1|11 low Small-Large isolated
## 149 6 24 1001 1|11 low Small-Large isolated
## 150 6 24 1001 1|11 low Small-Large isolated
## 151 6 24 1001 1|11 low Small-Large isolated
## 152 6 24 1001 1|11 low Small-Large isolated
## 153 6 24 1001 1|11 low Small-Large isolated
## 154 6 24 1001 1|11 low Small-Large isolated
## 155 6 24 1001 1|11 low Small-Large isolated
## 156 6 24 1001 1|11 low Small-Large isolated
## 157 6 24 1001 1|11 low Small-Large isolated
## 158 6 24 1001 1|11 low Small-Large isolated
## 159 6 24 1001 1|11 low Small-Large isolated
## 160 6 24 1001 1|11 low Small-Large isolated
## 161 6 24 1001 1|11 low Small-Large isolated
## 162 6 24 1001 1|11 low Small-Large isolated
## 163 6 24 1001 1|11 low Small-Large isolated
## 164 6 24 1001 1|11 low Small-Large isolated
## 165 6 24 1001 1|11 low Small-Large isolated
## 166 6 24 1001 1|11 low Small-Large isolated
## 167 6 24 1001 1|11 low Small-Large isolated
## 168 6 24 1001 1|11 low Small-Large isolated
## 169 7 28 1001 1|11 low Small-Large isolated
## 170 7 28 1001 1|11 low Small-Large isolated
## 171 7 28 1001 1|11 low Small-Large isolated
## 172 7 28 1001 1|11 low Small-Large isolated
## 173 7 28 1001 1|11 low Small-Large isolated
## 174 7 28 1001 1|11 low Small-Large isolated
## 175 7 28 1001 1|11 low Small-Large isolated
## 176 7 28 1001 1|11 low Small-Large isolated
## 177 7 28 1001 1|11 low Small-Large isolated
## 178 7 28 1001 1|11 low Small-Large isolated
## 179 7 28 1001 1|11 low Small-Large isolated
## 180 7 28 1001 1|11 low Small-Large isolated
## 181 7 28 1001 1|11 low Small-Large isolated
## 182 7 28 1001 1|11 low Small-Large isolated
## 183 7 28 1001 1|11 low Small-Large isolated
## 184 7 28 1001 1|11 low Small-Large isolated
## 185 7 28 1001 1|11 low Small-Large isolated
## 186 7 28 1001 1|11 low Small-Large isolated
## 187 7 28 1001 1|11 low Small-Large isolated
## 188 7 28 1001 1|11 low Small-Large isolated
## 189 7 28 1001 1|11 low Small-Large isolated
## 190 7 28 1001 1|11 low Small-Large isolated
## 191 7 28 1001 1|11 low Small-Large isolated
## 192 7 28 1001 1|11 low Small-Large isolated
## 193 0 0 1002 1|12 low Small-Large isolated
## 194 0 0 1002 1|12 low Small-Large isolated
## 195 0 0 1002 1|12 low Small-Large isolated
## 196 0 0 1002 1|12 low Small-Large isolated
## 197 0 0 1002 1|12 low Small-Large isolated
## 198 0 0 1002 1|12 low Small-Large isolated
## 199 0 0 1002 1|12 low Small-Large isolated
## 200 0 0 1002 1|12 low Small-Large isolated
## 201 0 0 1002 1|12 low Small-Large isolated
## 202 0 0 1002 1|12 low Small-Large isolated
## 203 0 0 1002 1|12 low Small-Large isolated
## 204 0 0 1002 1|12 low Small-Large isolated
## 205 0 0 1002 1|12 low Small-Large isolated
## 206 0 0 1002 1|12 low Small-Large isolated
## 207 0 0 1002 1|12 low Small-Large isolated
## 208 0 0 1002 1|12 low Small-Large isolated
## 209 0 0 1002 1|12 low Small-Large isolated
## 210 0 0 1002 1|12 low Small-Large isolated
## 211 0 0 1002 1|12 low Small-Large isolated
## 212 0 0 1002 1|12 low Small-Large isolated
## 213 0 0 1002 1|12 low Small-Large isolated
## 214 0 0 1002 1|12 low Small-Large isolated
## 215 0 0 1002 1|12 low Small-Large isolated
## 216 0 0 1002 1|12 low Small-Large isolated
## 217 1 4 1002 1|12 low Small-Large isolated
## 218 1 4 1002 1|12 low Small-Large isolated
## 219 1 4 1002 1|12 low Small-Large isolated
## 220 1 4 1002 1|12 low Small-Large isolated
## 221 1 4 1002 1|12 low Small-Large isolated
## 222 1 4 1002 1|12 low Small-Large isolated
## 223 1 4 1002 1|12 low Small-Large isolated
## 224 1 4 1002 1|12 low Small-Large isolated
## 225 1 4 1002 1|12 low Small-Large isolated
## 226 1 4 1002 1|12 low Small-Large isolated
## 227 1 4 1002 1|12 low Small-Large isolated
## 228 1 4 1002 1|12 low Small-Large isolated
## 229 1 4 1002 1|12 low Small-Large isolated
## 230 1 4 1002 1|12 low Small-Large isolated
## 231 1 4 1002 1|12 low Small-Large isolated
## 232 1 4 1002 1|12 low Small-Large isolated
## 233 1 4 1002 1|12 low Small-Large isolated
## 234 1 4 1002 1|12 low Small-Large isolated
## 235 1 4 1002 1|12 low Small-Large isolated
## 236 1 4 1002 1|12 low Small-Large isolated
## 237 1 4 1002 1|12 low Small-Large isolated
## 238 1 4 1002 1|12 low Small-Large isolated
## 239 1 4 1002 1|12 low Small-Large isolated
## 240 1 4 1002 1|12 low Small-Large isolated
## 241 2 8 1002 1|12 low Small-Large isolated
## 242 2 8 1002 1|12 low Small-Large isolated
## 243 2 8 1002 1|12 low Small-Large isolated
## 244 2 8 1002 1|12 low Small-Large isolated
## 245 2 8 1002 1|12 low Small-Large isolated
## 246 2 8 1002 1|12 low Small-Large isolated
## 247 2 8 1002 1|12 low Small-Large isolated
## 248 2 8 1002 1|12 low Small-Large isolated
## 249 2 8 1002 1|12 low Small-Large isolated
## 250 2 8 1002 1|12 low Small-Large isolated
## 251 2 8 1002 1|12 low Small-Large isolated
## 252 2 8 1002 1|12 low Small-Large isolated
## 253 2 8 1002 1|12 low Small-Large isolated
## 254 2 8 1002 1|12 low Small-Large isolated
## 255 2 8 1002 1|12 low Small-Large isolated
## 256 2 8 1002 1|12 low Small-Large isolated
## 257 2 8 1002 1|12 low Small-Large isolated
## 258 2 8 1002 1|12 low Small-Large isolated
## 259 2 8 1002 1|12 low Small-Large isolated
## 260 2 8 1002 1|12 low Small-Large isolated
## 261 2 8 1002 1|12 low Small-Large isolated
## 262 2 8 1002 1|12 low Small-Large isolated
## 263 2 8 1002 1|12 low Small-Large isolated
## 264 2 8 1002 1|12 low Small-Large isolated
## 265 3 12 1002 1|12 low Small-Large isolated
## 266 3 12 1002 1|12 low Small-Large isolated
## 267 3 12 1002 1|12 low Small-Large isolated
## 268 3 12 1002 1|12 low Small-Large isolated
## 269 3 12 1002 1|12 low Small-Large isolated
## 270 3 12 1002 1|12 low Small-Large isolated
## 271 3 12 1002 1|12 low Small-Large isolated
## 272 3 12 1002 1|12 low Small-Large isolated
## 273 3 12 1002 1|12 low Small-Large isolated
## 274 3 12 1002 1|12 low Small-Large isolated
## 275 3 12 1002 1|12 low Small-Large isolated
## 276 3 12 1002 1|12 low Small-Large isolated
## 277 3 12 1002 1|12 low Small-Large isolated
## 278 3 12 1002 1|12 low Small-Large isolated
## 279 3 12 1002 1|12 low Small-Large isolated
## 280 3 12 1002 1|12 low Small-Large isolated
## 281 3 12 1002 1|12 low Small-Large isolated
## 282 3 12 1002 1|12 low Small-Large isolated
## 283 3 12 1002 1|12 low Small-Large isolated
## 284 3 12 1002 1|12 low Small-Large isolated
## 285 3 12 1002 1|12 low Small-Large isolated
## 286 3 12 1002 1|12 low Small-Large isolated
## 287 3 12 1002 1|12 low Small-Large isolated
## 288 3 12 1002 1|12 low Small-Large isolated
## 289 4 16 1002 1|12 low Small-Large isolated
## 290 4 16 1002 1|12 low Small-Large isolated
## 291 4 16 1002 1|12 low Small-Large isolated
## 292 4 16 1002 1|12 low Small-Large isolated
## 293 4 16 1002 1|12 low Small-Large isolated
## 294 4 16 1002 1|12 low Small-Large isolated
## 295 4 16 1002 1|12 low Small-Large isolated
## 296 4 16 1002 1|12 low Small-Large isolated
## 297 4 16 1002 1|12 low Small-Large isolated
## 298 4 16 1002 1|12 low Small-Large isolated
## 299 4 16 1002 1|12 low Small-Large isolated
## 300 4 16 1002 1|12 low Small-Large isolated
## 301 4 16 1002 1|12 low Small-Large isolated
## 302 4 16 1002 1|12 low Small-Large isolated
## 303 4 16 1002 1|12 low Small-Large isolated
## 304 4 16 1002 1|12 low Small-Large isolated
## 305 4 16 1002 1|12 low Small-Large isolated
## 306 4 16 1002 1|12 low Small-Large isolated
## 307 4 16 1002 1|12 low Small-Large isolated
## 308 4 16 1002 1|12 low Small-Large isolated
## 309 4 16 1002 1|12 low Small-Large isolated
## 310 4 16 1002 1|12 low Small-Large isolated
## 311 4 16 1002 1|12 low Small-Large isolated
## 312 4 16 1002 1|12 low Small-Large isolated
## 313 5 20 1002 1|12 low Small-Large isolated
## 314 5 20 1002 1|12 low Small-Large isolated
## 315 5 20 1002 1|12 low Small-Large isolated
## 316 5 20 1002 1|12 low Small-Large isolated
## 317 5 20 1002 1|12 low Small-Large isolated
## 318 5 20 1002 1|12 low Small-Large isolated
## 319 5 20 1002 1|12 low Small-Large isolated
## 320 5 20 1002 1|12 low Small-Large isolated
## 321 5 20 1002 1|12 low Small-Large isolated
## 322 5 20 1002 1|12 low Small-Large isolated
## 323 5 20 1002 1|12 low Small-Large isolated
## 324 5 20 1002 1|12 low Small-Large isolated
## 325 5 20 1002 1|12 low Small-Large isolated
## 326 5 20 1002 1|12 low Small-Large isolated
## 327 5 20 1002 1|12 low Small-Large isolated
## 328 5 20 1002 1|12 low Small-Large isolated
## 329 5 20 1002 1|12 low Small-Large isolated
## 330 5 20 1002 1|12 low Small-Large isolated
## 331 5 20 1002 1|12 low Small-Large isolated
## 332 5 20 1002 1|12 low Small-Large isolated
## 333 5 20 1002 1|12 low Small-Large isolated
## 334 5 20 1002 1|12 low Small-Large isolated
## 335 5 20 1002 1|12 low Small-Large isolated
## 336 5 20 1002 1|12 low Small-Large isolated
## 337 6 24 1002 1|12 low Small-Large isolated
## 338 6 24 1002 1|12 low Small-Large isolated
## 339 6 24 1002 1|12 low Small-Large isolated
## 340 6 24 1002 1|12 low Small-Large isolated
## 341 6 24 1002 1|12 low Small-Large isolated
## 342 6 24 1002 1|12 low Small-Large isolated
## 343 6 24 1002 1|12 low Small-Large isolated
## 344 6 24 1002 1|12 low Small-Large isolated
## 345 6 24 1002 1|12 low Small-Large isolated
## 346 6 24 1002 1|12 low Small-Large isolated
## 347 6 24 1002 1|12 low Small-Large isolated
## 348 6 24 1002 1|12 low Small-Large isolated
## 349 6 24 1002 1|12 low Small-Large isolated
## 350 6 24 1002 1|12 low Small-Large isolated
## 351 6 24 1002 1|12 low Small-Large isolated
## 352 6 24 1002 1|12 low Small-Large isolated
## 353 6 24 1002 1|12 low Small-Large isolated
## 354 6 24 1002 1|12 low Small-Large isolated
## 355 6 24 1002 1|12 low Small-Large isolated
## 356 6 24 1002 1|12 low Small-Large isolated
## 357 6 24 1002 1|12 low Small-Large isolated
## 358 6 24 1002 1|12 low Small-Large isolated
## 359 6 24 1002 1|12 low Small-Large isolated
## 360 6 24 1002 1|12 low Small-Large isolated
## 361 7 28 1002 1|12 low Small-Large isolated
## 362 7 28 1002 1|12 low Small-Large isolated
## 363 7 28 1002 1|12 low Small-Large isolated
## 364 7 28 1002 1|12 low Small-Large isolated
## 365 7 28 1002 1|12 low Small-Large isolated
## 366 7 28 1002 1|12 low Small-Large isolated
## 367 7 28 1002 1|12 low Small-Large isolated
## 368 7 28 1002 1|12 low Small-Large isolated
## 369 7 28 1002 1|12 low Small-Large isolated
## 370 7 28 1002 1|12 low Small-Large isolated
## 371 7 28 1002 1|12 low Small-Large isolated
## 372 7 28 1002 1|12 low Small-Large isolated
## 373 7 28 1002 1|12 low Small-Large isolated
## 374 7 28 1002 1|12 low Small-Large isolated
## 375 7 28 1002 1|12 low Small-Large isolated
## 376 7 28 1002 1|12 low Small-Large isolated
## 377 7 28 1002 1|12 low Small-Large isolated
## 378 7 28 1002 1|12 low Small-Large isolated
## 379 7 28 1002 1|12 low Small-Large isolated
## 380 7 28 1002 1|12 low Small-Large isolated
## 381 7 28 1002 1|12 low Small-Large isolated
## 382 7 28 1002 1|12 low Small-Large isolated
## 383 7 28 1002 1|12 low Small-Large isolated
## 384 7 28 1002 1|12 low Small-Large isolated
## 385 0 0 1003 1|13 low Small-Large isolated
## 386 0 0 1003 1|13 low Small-Large isolated
## 387 0 0 1003 1|13 low Small-Large isolated
## 388 0 0 1003 1|13 low Small-Large isolated
## 389 0 0 1003 1|13 low Small-Large isolated
## 390 0 0 1003 1|13 low Small-Large isolated
## 391 0 0 1003 1|13 low Small-Large isolated
## 392 0 0 1003 1|13 low Small-Large isolated
## 393 0 0 1003 1|13 low Small-Large isolated
## 394 0 0 1003 1|13 low Small-Large isolated
## 395 0 0 1003 1|13 low Small-Large isolated
## 396 0 0 1003 1|13 low Small-Large isolated
## 397 0 0 1003 1|13 low Small-Large isolated
## 398 0 0 1003 1|13 low Small-Large isolated
## 399 0 0 1003 1|13 low Small-Large isolated
## 400 0 0 1003 1|13 low Small-Large isolated
## 401 0 0 1003 1|13 low Small-Large isolated
## 402 0 0 1003 1|13 low Small-Large isolated
## 403 0 0 1003 1|13 low Small-Large isolated
## 404 0 0 1003 1|13 low Small-Large isolated
## 405 0 0 1003 1|13 low Small-Large isolated
## 406 0 0 1003 1|13 low Small-Large isolated
## 407 0 0 1003 1|13 low Small-Large isolated
## 408 0 0 1003 1|13 low Small-Large isolated
## 409 1 4 1003 1|13 low Small-Large isolated
## 410 1 4 1003 1|13 low Small-Large isolated
## 411 1 4 1003 1|13 low Small-Large isolated
## 412 1 4 1003 1|13 low Small-Large isolated
## 413 1 4 1003 1|13 low Small-Large isolated
## 414 1 4 1003 1|13 low Small-Large isolated
## 415 1 4 1003 1|13 low Small-Large isolated
## 416 1 4 1003 1|13 low Small-Large isolated
## 417 1 4 1003 1|13 low Small-Large isolated
## 418 1 4 1003 1|13 low Small-Large isolated
## 419 1 4 1003 1|13 low Small-Large isolated
## 420 1 4 1003 1|13 low Small-Large isolated
## 421 1 4 1003 1|13 low Small-Large isolated
## 422 1 4 1003 1|13 low Small-Large isolated
## 423 1 4 1003 1|13 low Small-Large isolated
## 424 1 4 1003 1|13 low Small-Large isolated
## 425 1 4 1003 1|13 low Small-Large isolated
## 426 1 4 1003 1|13 low Small-Large isolated
## 427 1 4 1003 1|13 low Small-Large isolated
## 428 1 4 1003 1|13 low Small-Large isolated
## 429 1 4 1003 1|13 low Small-Large isolated
## 430 1 4 1003 1|13 low Small-Large isolated
## 431 1 4 1003 1|13 low Small-Large isolated
## 432 1 4 1003 1|13 low Small-Large isolated
## 433 2 8 1003 1|13 low Small-Large isolated
## 434 2 8 1003 1|13 low Small-Large isolated
## 435 2 8 1003 1|13 low Small-Large isolated
## 436 2 8 1003 1|13 low Small-Large isolated
## 437 2 8 1003 1|13 low Small-Large isolated
## 438 2 8 1003 1|13 low Small-Large isolated
## 439 2 8 1003 1|13 low Small-Large isolated
## 440 2 8 1003 1|13 low Small-Large isolated
## 441 2 8 1003 1|13 low Small-Large isolated
## 442 2 8 1003 1|13 low Small-Large isolated
## 443 2 8 1003 1|13 low Small-Large isolated
## 444 2 8 1003 1|13 low Small-Large isolated
## 445 2 8 1003 1|13 low Small-Large isolated
## 446 2 8 1003 1|13 low Small-Large isolated
## 447 2 8 1003 1|13 low Small-Large isolated
## 448 2 8 1003 1|13 low Small-Large isolated
## 449 2 8 1003 1|13 low Small-Large isolated
## 450 2 8 1003 1|13 low Small-Large isolated
## 451 2 8 1003 1|13 low Small-Large isolated
## 452 2 8 1003 1|13 low Small-Large isolated
## 453 2 8 1003 1|13 low Small-Large isolated
## 454 2 8 1003 1|13 low Small-Large isolated
## 455 2 8 1003 1|13 low Small-Large isolated
## 456 2 8 1003 1|13 low Small-Large isolated
## 457 3 12 1003 1|13 low Small-Large isolated
## 458 3 12 1003 1|13 low Small-Large isolated
## 459 3 12 1003 1|13 low Small-Large isolated
## 460 3 12 1003 1|13 low Small-Large isolated
## 461 3 12 1003 1|13 low Small-Large isolated
## 462 3 12 1003 1|13 low Small-Large isolated
## 463 3 12 1003 1|13 low Small-Large isolated
## 464 3 12 1003 1|13 low Small-Large isolated
## 465 3 12 1003 1|13 low Small-Large isolated
## 466 3 12 1003 1|13 low Small-Large isolated
## 467 3 12 1003 1|13 low Small-Large isolated
## 468 3 12 1003 1|13 low Small-Large isolated
## 469 3 12 1003 1|13 low Small-Large isolated
## 470 3 12 1003 1|13 low Small-Large isolated
## 471 3 12 1003 1|13 low Small-Large isolated
## 472 3 12 1003 1|13 low Small-Large isolated
## 473 3 12 1003 1|13 low Small-Large isolated
## 474 3 12 1003 1|13 low Small-Large isolated
## 475 3 12 1003 1|13 low Small-Large isolated
## 476 3 12 1003 1|13 low Small-Large isolated
## 477 3 12 1003 1|13 low Small-Large isolated
## 478 3 12 1003 1|13 low Small-Large isolated
## 479 3 12 1003 1|13 low Small-Large isolated
## 480 3 12 1003 1|13 low Small-Large isolated
## 481 4 16 1003 1|13 low Small-Large isolated
## 482 4 16 1003 1|13 low Small-Large isolated
## 483 4 16 1003 1|13 low Small-Large isolated
## 484 4 16 1003 1|13 low Small-Large isolated
## 485 4 16 1003 1|13 low Small-Large isolated
## 486 4 16 1003 1|13 low Small-Large isolated
## 487 4 16 1003 1|13 low Small-Large isolated
## 488 4 16 1003 1|13 low Small-Large isolated
## 489 4 16 1003 1|13 low Small-Large isolated
## 490 4 16 1003 1|13 low Small-Large isolated
## 491 4 16 1003 1|13 low Small-Large isolated
## 492 4 16 1003 1|13 low Small-Large isolated
## 493 4 16 1003 1|13 low Small-Large isolated
## 494 4 16 1003 1|13 low Small-Large isolated
## 495 4 16 1003 1|13 low Small-Large isolated
## 496 4 16 1003 1|13 low Small-Large isolated
## 497 4 16 1003 1|13 low Small-Large isolated
## 498 4 16 1003 1|13 low Small-Large isolated
## 499 4 16 1003 1|13 low Small-Large isolated
## 500 4 16 1003 1|13 low Small-Large isolated
## 501 4 16 1003 1|13 low Small-Large isolated
## 502 4 16 1003 1|13 low Small-Large isolated
## 503 4 16 1003 1|13 low Small-Large isolated
## 504 4 16 1003 1|13 low Small-Large isolated
## 505 5 20 1003 1|13 low Small-Large isolated
## 506 5 20 1003 1|13 low Small-Large isolated
## 507 5 20 1003 1|13 low Small-Large isolated
## 508 5 20 1003 1|13 low Small-Large isolated
## 509 5 20 1003 1|13 low Small-Large isolated
## 510 5 20 1003 1|13 low Small-Large isolated
## 511 5 20 1003 1|13 low Small-Large isolated
## 512 5 20 1003 1|13 low Small-Large isolated
## 513 5 20 1003 1|13 low Small-Large isolated
## 514 5 20 1003 1|13 low Small-Large isolated
## 515 5 20 1003 1|13 low Small-Large isolated
## 516 5 20 1003 1|13 low Small-Large isolated
## 517 5 20 1003 1|13 low Small-Large isolated
## 518 5 20 1003 1|13 low Small-Large isolated
## 519 5 20 1003 1|13 low Small-Large isolated
## 520 5 20 1003 1|13 low Small-Large isolated
## 521 5 20 1003 1|13 low Small-Large isolated
## 522 5 20 1003 1|13 low Small-Large isolated
## 523 5 20 1003 1|13 low Small-Large isolated
## 524 5 20 1003 1|13 low Small-Large isolated
## 525 5 20 1003 1|13 low Small-Large isolated
## 526 5 20 1003 1|13 low Small-Large isolated
## 527 5 20 1003 1|13 low Small-Large isolated
## 528 5 20 1003 1|13 low Small-Large isolated
## 529 6 24 1003 1|13 low Small-Large isolated
## 530 6 24 1003 1|13 low Small-Large isolated
## 531 6 24 1003 1|13 low Small-Large isolated
## 532 6 24 1003 1|13 low Small-Large isolated
## 533 6 24 1003 1|13 low Small-Large isolated
## 534 6 24 1003 1|13 low Small-Large isolated
## 535 6 24 1003 1|13 low Small-Large isolated
## 536 6 24 1003 1|13 low Small-Large isolated
## 537 6 24 1003 1|13 low Small-Large isolated
## 538 6 24 1003 1|13 low Small-Large isolated
## 539 6 24 1003 1|13 low Small-Large isolated
## 540 6 24 1003 1|13 low Small-Large isolated
## 541 6 24 1003 1|13 low Small-Large isolated
## 542 6 24 1003 1|13 low Small-Large isolated
## 543 6 24 1003 1|13 low Small-Large isolated
## 544 6 24 1003 1|13 low Small-Large isolated
## 545 6 24 1003 1|13 low Small-Large isolated
## 546 6 24 1003 1|13 low Small-Large isolated
## 547 6 24 1003 1|13 low Small-Large isolated
## 548 6 24 1003 1|13 low Small-Large isolated
## 549 6 24 1003 1|13 low Small-Large isolated
## 550 6 24 1003 1|13 low Small-Large isolated
## 551 6 24 1003 1|13 low Small-Large isolated
## 552 6 24 1003 1|13 low Small-Large isolated
## 553 7 28 1003 1|13 low Small-Large isolated
## 554 7 28 1003 1|13 low Small-Large isolated
## 555 7 28 1003 1|13 low Small-Large isolated
## 556 7 28 1003 1|13 low Small-Large isolated
## 557 7 28 1003 1|13 low Small-Large isolated
## 558 7 28 1003 1|13 low Small-Large isolated
## 559 7 28 1003 1|13 low Small-Large isolated
## 560 7 28 1003 1|13 low Small-Large isolated
## 561 7 28 1003 1|13 low Small-Large isolated
## 562 7 28 1003 1|13 low Small-Large isolated
## 563 7 28 1003 1|13 low Small-Large isolated
## 564 7 28 1003 1|13 low Small-Large isolated
## 565 7 28 1003 1|13 low Small-Large isolated
## 566 7 28 1003 1|13 low Small-Large isolated
## 567 7 28 1003 1|13 low Small-Large isolated
## 568 7 28 1003 1|13 low Small-Large isolated
## 569 7 28 1003 1|13 low Small-Large isolated
## 570 7 28 1003 1|13 low Small-Large isolated
## 571 7 28 1003 1|13 low Small-Large isolated
## 572 7 28 1003 1|13 low Small-Large isolated
## 573 7 28 1003 1|13 low Small-Large isolated
## 574 7 28 1003 1|13 low Small-Large isolated
## 575 7 28 1003 1|13 low Small-Large isolated
## 576 7 28 1003 1|13 low Small-Large isolated
## 577 0 0 1004 1|14 low Small-Large isolated
## 578 0 0 1004 1|14 low Small-Large isolated
## 579 0 0 1004 1|14 low Small-Large isolated
## 580 0 0 1004 1|14 low Small-Large isolated
## 581 0 0 1004 1|14 low Small-Large isolated
## 582 0 0 1004 1|14 low Small-Large isolated
## 583 0 0 1004 1|14 low Small-Large isolated
## 584 0 0 1004 1|14 low Small-Large isolated
## 585 0 0 1004 1|14 low Small-Large isolated
## 586 0 0 1004 1|14 low Small-Large isolated
## 587 0 0 1004 1|14 low Small-Large isolated
## 588 0 0 1004 1|14 low Small-Large isolated
## 589 0 0 1004 1|14 low Small-Large isolated
## 590 0 0 1004 1|14 low Small-Large isolated
## 591 0 0 1004 1|14 low Small-Large isolated
## 592 0 0 1004 1|14 low Small-Large isolated
## 593 0 0 1004 1|14 low Small-Large isolated
## 594 0 0 1004 1|14 low Small-Large isolated
## 595 0 0 1004 1|14 low Small-Large isolated
## 596 0 0 1004 1|14 low Small-Large isolated
## 597 0 0 1004 1|14 low Small-Large isolated
## 598 0 0 1004 1|14 low Small-Large isolated
## 599 0 0 1004 1|14 low Small-Large isolated
## 600 0 0 1004 1|14 low Small-Large isolated
## 601 1 4 1004 1|14 low Small-Large isolated
## 602 1 4 1004 1|14 low Small-Large isolated
## 603 1 4 1004 1|14 low Small-Large isolated
## 604 1 4 1004 1|14 low Small-Large isolated
## 605 1 4 1004 1|14 low Small-Large isolated
## 606 1 4 1004 1|14 low Small-Large isolated
## 607 1 4 1004 1|14 low Small-Large isolated
## 608 1 4 1004 1|14 low Small-Large isolated
## 609 1 4 1004 1|14 low Small-Large isolated
## 610 1 4 1004 1|14 low Small-Large isolated
## 611 1 4 1004 1|14 low Small-Large isolated
## 612 1 4 1004 1|14 low Small-Large isolated
## 613 1 4 1004 1|14 low Small-Large isolated
## 614 1 4 1004 1|14 low Small-Large isolated
## 615 1 4 1004 1|14 low Small-Large isolated
## 616 1 4 1004 1|14 low Small-Large isolated
## 617 1 4 1004 1|14 low Small-Large isolated
## 618 1 4 1004 1|14 low Small-Large isolated
## 619 1 4 1004 1|14 low Small-Large isolated
## 620 1 4 1004 1|14 low Small-Large isolated
## 621 1 4 1004 1|14 low Small-Large isolated
## 622 1 4 1004 1|14 low Small-Large isolated
## 623 1 4 1004 1|14 low Small-Large isolated
## 624 1 4 1004 1|14 low Small-Large isolated
## 625 2 8 1004 1|14 low Small-Large isolated
## 626 2 8 1004 1|14 low Small-Large isolated
## 627 2 8 1004 1|14 low Small-Large isolated
## 628 2 8 1004 1|14 low Small-Large isolated
## 629 2 8 1004 1|14 low Small-Large isolated
## 630 2 8 1004 1|14 low Small-Large isolated
## 631 2 8 1004 1|14 low Small-Large isolated
## 632 2 8 1004 1|14 low Small-Large isolated
## 633 2 8 1004 1|14 low Small-Large isolated
## 634 2 8 1004 1|14 low Small-Large isolated
## 635 2 8 1004 1|14 low Small-Large isolated
## 636 2 8 1004 1|14 low Small-Large isolated
## 637 2 8 1004 1|14 low Small-Large isolated
## 638 2 8 1004 1|14 low Small-Large isolated
## 639 2 8 1004 1|14 low Small-Large isolated
## 640 2 8 1004 1|14 low Small-Large isolated
## 641 2 8 1004 1|14 low Small-Large isolated
## 642 2 8 1004 1|14 low Small-Large isolated
## 643 2 8 1004 1|14 low Small-Large isolated
## 644 2 8 1004 1|14 low Small-Large isolated
## 645 2 8 1004 1|14 low Small-Large isolated
## 646 2 8 1004 1|14 low Small-Large isolated
## 647 2 8 1004 1|14 low Small-Large isolated
## 648 2 8 1004 1|14 low Small-Large isolated
## 649 3 12 1004 1|14 low Small-Large isolated
## 650 3 12 1004 1|14 low Small-Large isolated
## 651 3 12 1004 1|14 low Small-Large isolated
## 652 3 12 1004 1|14 low Small-Large isolated
## 653 3 12 1004 1|14 low Small-Large isolated
## 654 3 12 1004 1|14 low Small-Large isolated
## 655 3 12 1004 1|14 low Small-Large isolated
## 656 3 12 1004 1|14 low Small-Large isolated
## 657 3 12 1004 1|14 low Small-Large isolated
## 658 3 12 1004 1|14 low Small-Large isolated
## 659 3 12 1004 1|14 low Small-Large isolated
## 660 3 12 1004 1|14 low Small-Large isolated
## 661 3 12 1004 1|14 low Small-Large isolated
## 662 3 12 1004 1|14 low Small-Large isolated
## 663 3 12 1004 1|14 low Small-Large isolated
## 664 3 12 1004 1|14 low Small-Large isolated
## 665 3 12 1004 1|14 low Small-Large isolated
## 666 3 12 1004 1|14 low Small-Large isolated
## 667 3 12 1004 1|14 low Small-Large isolated
## 668 3 12 1004 1|14 low Small-Large isolated
## 669 3 12 1004 1|14 low Small-Large isolated
## 670 3 12 1004 1|14 low Small-Large isolated
## 671 3 12 1004 1|14 low Small-Large isolated
## 672 3 12 1004 1|14 low Small-Large isolated
## 673 4 16 1004 1|14 low Small-Large isolated
## 674 4 16 1004 1|14 low Small-Large isolated
## 675 4 16 1004 1|14 low Small-Large isolated
## 676 4 16 1004 1|14 low Small-Large isolated
## 677 4 16 1004 1|14 low Small-Large isolated
## 678 4 16 1004 1|14 low Small-Large isolated
## 679 4 16 1004 1|14 low Small-Large isolated
## 680 4 16 1004 1|14 low Small-Large isolated
## 681 4 16 1004 1|14 low Small-Large isolated
## 682 4 16 1004 1|14 low Small-Large isolated
## 683 4 16 1004 1|14 low Small-Large isolated
## 684 4 16 1004 1|14 low Small-Large isolated
## 685 4 16 1004 1|14 low Small-Large isolated
## 686 4 16 1004 1|14 low Small-Large isolated
## 687 4 16 1004 1|14 low Small-Large isolated
## 688 4 16 1004 1|14 low Small-Large isolated
## 689 4 16 1004 1|14 low Small-Large isolated
## 690 4 16 1004 1|14 low Small-Large isolated
## 691 4 16 1004 1|14 low Small-Large isolated
## 692 4 16 1004 1|14 low Small-Large isolated
## 693 4 16 1004 1|14 low Small-Large isolated
## 694 4 16 1004 1|14 low Small-Large isolated
## 695 4 16 1004 1|14 low Small-Large isolated
## 696 4 16 1004 1|14 low Small-Large isolated
## 697 5 20 1004 1|14 low Small-Large isolated
## 698 5 20 1004 1|14 low Small-Large isolated
## 699 5 20 1004 1|14 low Small-Large isolated
## 700 5 20 1004 1|14 low Small-Large isolated
## 701 5 20 1004 1|14 low Small-Large isolated
## 702 5 20 1004 1|14 low Small-Large isolated
## 703 5 20 1004 1|14 low Small-Large isolated
## 704 5 20 1004 1|14 low Small-Large isolated
## 705 5 20 1004 1|14 low Small-Large isolated
## 706 5 20 1004 1|14 low Small-Large isolated
## 707 5 20 1004 1|14 low Small-Large isolated
## 708 5 20 1004 1|14 low Small-Large isolated
## 709 5 20 1004 1|14 low Small-Large isolated
## 710 5 20 1004 1|14 low Small-Large isolated
## 711 5 20 1004 1|14 low Small-Large isolated
## 712 5 20 1004 1|14 low Small-Large isolated
## 713 5 20 1004 1|14 low Small-Large isolated
## 714 5 20 1004 1|14 low Small-Large isolated
## 715 5 20 1004 1|14 low Small-Large isolated
## 716 5 20 1004 1|14 low Small-Large isolated
## 717 5 20 1004 1|14 low Small-Large isolated
## 718 5 20 1004 1|14 low Small-Large isolated
## 719 5 20 1004 1|14 low Small-Large isolated
## 720 5 20 1004 1|14 low Small-Large isolated
## 721 6 24 1004 1|14 low Small-Large isolated
## 722 6 24 1004 1|14 low Small-Large isolated
## 723 6 24 1004 1|14 low Small-Large isolated
## 724 6 24 1004 1|14 low Small-Large isolated
## 725 6 24 1004 1|14 low Small-Large isolated
## 726 6 24 1004 1|14 low Small-Large isolated
## 727 6 24 1004 1|14 low Small-Large isolated
## 728 6 24 1004 1|14 low Small-Large isolated
## 729 6 24 1004 1|14 low Small-Large isolated
## 730 6 24 1004 1|14 low Small-Large isolated
## 731 6 24 1004 1|14 low Small-Large isolated
## 732 6 24 1004 1|14 low Small-Large isolated
## 733 6 24 1004 1|14 low Small-Large isolated
## 734 6 24 1004 1|14 low Small-Large isolated
## 735 6 24 1004 1|14 low Small-Large isolated
## 736 6 24 1004 1|14 low Small-Large isolated
## 737 6 24 1004 1|14 low Small-Large isolated
## 738 6 24 1004 1|14 low Small-Large isolated
## 739 6 24 1004 1|14 low Small-Large isolated
## 740 6 24 1004 1|14 low Small-Large isolated
## 741 6 24 1004 1|14 low Small-Large isolated
## 742 6 24 1004 1|14 low Small-Large isolated
## 743 6 24 1004 1|14 low Small-Large isolated
## 744 6 24 1004 1|14 low Small-Large isolated
## 745 7 28 1004 1|14 low Small-Large isolated
## 746 7 28 1004 1|14 low Small-Large isolated
## 747 7 28 1004 1|14 low Small-Large isolated
## 748 7 28 1004 1|14 low Small-Large isolated
## 749 7 28 1004 1|14 low Small-Large isolated
## 750 7 28 1004 1|14 low Small-Large isolated
## 751 7 28 1004 1|14 low Small-Large isolated
## 752 7 28 1004 1|14 low Small-Large isolated
## 753 7 28 1004 1|14 low Small-Large isolated
## 754 7 28 1004 1|14 low Small-Large isolated
## 755 7 28 1004 1|14 low Small-Large isolated
## 756 7 28 1004 1|14 low Small-Large isolated
## 757 7 28 1004 1|14 low Small-Large isolated
## 758 7 28 1004 1|14 low Small-Large isolated
## 759 7 28 1004 1|14 low Small-Large isolated
## 760 7 28 1004 1|14 low Small-Large isolated
## 761 7 28 1004 1|14 low Small-Large isolated
## 762 7 28 1004 1|14 low Small-Large isolated
## 763 7 28 1004 1|14 low Small-Large isolated
## 764 7 28 1004 1|14 low Small-Large isolated
## 765 7 28 1004 1|14 low Small-Large isolated
## 766 7 28 1004 1|14 low Small-Large isolated
## 767 7 28 1004 1|14 low Small-Large isolated
## 768 7 28 1004 1|14 low Small-Large isolated
## 769 0 0 1005 1|15 low Small-Large isolated
## 770 0 0 1005 1|15 low Small-Large isolated
## 771 0 0 1005 1|15 low Small-Large isolated
## 772 0 0 1005 1|15 low Small-Large isolated
## 773 0 0 1005 1|15 low Small-Large isolated
## 774 0 0 1005 1|15 low Small-Large isolated
## 775 0 0 1005 1|15 low Small-Large isolated
## 776 0 0 1005 1|15 low Small-Large isolated
## 777 0 0 1005 1|15 low Small-Large isolated
## 778 0 0 1005 1|15 low Small-Large isolated
## 779 0 0 1005 1|15 low Small-Large isolated
## 780 0 0 1005 1|15 low Small-Large isolated
## 781 0 0 1005 1|15 low Small-Large isolated
## 782 0 0 1005 1|15 low Small-Large isolated
## 783 0 0 1005 1|15 low Small-Large isolated
## 784 0 0 1005 1|15 low Small-Large isolated
## 785 0 0 1005 1|15 low Small-Large isolated
## 786 0 0 1005 1|15 low Small-Large isolated
## 787 0 0 1005 1|15 low Small-Large isolated
## 788 0 0 1005 1|15 low Small-Large isolated
## 789 0 0 1005 1|15 low Small-Large isolated
## 790 0 0 1005 1|15 low Small-Large isolated
## 791 0 0 1005 1|15 low Small-Large isolated
## 792 0 0 1005 1|15 low Small-Large isolated
## 793 1 4 1005 1|15 low Small-Large isolated
## 794 1 4 1005 1|15 low Small-Large isolated
## 795 1 4 1005 1|15 low Small-Large isolated
## 796 1 4 1005 1|15 low Small-Large isolated
## 797 1 4 1005 1|15 low Small-Large isolated
## 798 1 4 1005 1|15 low Small-Large isolated
## 799 1 4 1005 1|15 low Small-Large isolated
## 800 1 4 1005 1|15 low Small-Large isolated
## 801 1 4 1005 1|15 low Small-Large isolated
## 802 1 4 1005 1|15 low Small-Large isolated
## 803 1 4 1005 1|15 low Small-Large isolated
## 804 1 4 1005 1|15 low Small-Large isolated
## 805 1 4 1005 1|15 low Small-Large isolated
## 806 1 4 1005 1|15 low Small-Large isolated
## 807 1 4 1005 1|15 low Small-Large isolated
## 808 1 4 1005 1|15 low Small-Large isolated
## 809 1 4 1005 1|15 low Small-Large isolated
## 810 1 4 1005 1|15 low Small-Large isolated
## 811 1 4 1005 1|15 low Small-Large isolated
## 812 1 4 1005 1|15 low Small-Large isolated
## 813 1 4 1005 1|15 low Small-Large isolated
## 814 1 4 1005 1|15 low Small-Large isolated
## 815 1 4 1005 1|15 low Small-Large isolated
## 816 1 4 1005 1|15 low Small-Large isolated
## 817 2 8 1005 1|15 low Small-Large isolated
## 818 2 8 1005 1|15 low Small-Large isolated
## 819 2 8 1005 1|15 low Small-Large isolated
## 820 2 8 1005 1|15 low Small-Large isolated
## 821 2 8 1005 1|15 low Small-Large isolated
## 822 2 8 1005 1|15 low Small-Large isolated
## 823 2 8 1005 1|15 low Small-Large isolated
## 824 2 8 1005 1|15 low Small-Large isolated
## 825 2 8 1005 1|15 low Small-Large isolated
## 826 2 8 1005 1|15 low Small-Large isolated
## 827 2 8 1005 1|15 low Small-Large isolated
## 828 2 8 1005 1|15 low Small-Large isolated
## 829 2 8 1005 1|15 low Small-Large isolated
## 830 2 8 1005 1|15 low Small-Large isolated
## 831 2 8 1005 1|15 low Small-Large isolated
## 832 2 8 1005 1|15 low Small-Large isolated
## 833 2 8 1005 1|15 low Small-Large isolated
## 834 2 8 1005 1|15 low Small-Large isolated
## 835 2 8 1005 1|15 low Small-Large isolated
## 836 2 8 1005 1|15 low Small-Large isolated
## 837 2 8 1005 1|15 low Small-Large isolated
## 838 2 8 1005 1|15 low Small-Large isolated
## 839 2 8 1005 1|15 low Small-Large isolated
## 840 2 8 1005 1|15 low Small-Large isolated
## 841 3 12 1005 1|15 low Small-Large isolated
## 842 3 12 1005 1|15 low Small-Large isolated
## 843 3 12 1005 1|15 low Small-Large isolated
## 844 3 12 1005 1|15 low Small-Large isolated
## 845 3 12 1005 1|15 low Small-Large isolated
## 846 3 12 1005 1|15 low Small-Large isolated
## 847 3 12 1005 1|15 low Small-Large isolated
## 848 3 12 1005 1|15 low Small-Large isolated
## 849 3 12 1005 1|15 low Small-Large isolated
## 850 3 12 1005 1|15 low Small-Large isolated
## 851 3 12 1005 1|15 low Small-Large isolated
## 852 3 12 1005 1|15 low Small-Large isolated
## 853 3 12 1005 1|15 low Small-Large isolated
## 854 3 12 1005 1|15 low Small-Large isolated
## 855 3 12 1005 1|15 low Small-Large isolated
## 856 3 12 1005 1|15 low Small-Large isolated
## 857 3 12 1005 1|15 low Small-Large isolated
## 858 3 12 1005 1|15 low Small-Large isolated
## 859 3 12 1005 1|15 low Small-Large isolated
## 860 3 12 1005 1|15 low Small-Large isolated
## 861 3 12 1005 1|15 low Small-Large isolated
## 862 3 12 1005 1|15 low Small-Large isolated
## 863 3 12 1005 1|15 low Small-Large isolated
## 864 3 12 1005 1|15 low Small-Large isolated
## 865 4 16 1005 1|15 low Small-Large isolated
## 866 4 16 1005 1|15 low Small-Large isolated
## 867 4 16 1005 1|15 low Small-Large isolated
## 868 4 16 1005 1|15 low Small-Large isolated
## 869 4 16 1005 1|15 low Small-Large isolated
## 870 4 16 1005 1|15 low Small-Large isolated
## 871 4 16 1005 1|15 low Small-Large isolated
## 872 4 16 1005 1|15 low Small-Large isolated
## 873 4 16 1005 1|15 low Small-Large isolated
## 874 4 16 1005 1|15 low Small-Large isolated
## 875 4 16 1005 1|15 low Small-Large isolated
## 876 4 16 1005 1|15 low Small-Large isolated
## 877 4 16 1005 1|15 low Small-Large isolated
## 878 4 16 1005 1|15 low Small-Large isolated
## 879 4 16 1005 1|15 low Small-Large isolated
## 880 4 16 1005 1|15 low Small-Large isolated
## 881 4 16 1005 1|15 low Small-Large isolated
## 882 4 16 1005 1|15 low Small-Large isolated
## 883 4 16 1005 1|15 low Small-Large isolated
## 884 4 16 1005 1|15 low Small-Large isolated
## 885 4 16 1005 1|15 low Small-Large isolated
## 886 4 16 1005 1|15 low Small-Large isolated
## 887 4 16 1005 1|15 low Small-Large isolated
## 888 4 16 1005 1|15 low Small-Large isolated
## 889 5 20 1005 1|15 low Small-Large isolated
## 890 5 20 1005 1|15 low Small-Large isolated
## 891 5 20 1005 1|15 low Small-Large isolated
## 892 5 20 1005 1|15 low Small-Large isolated
## 893 5 20 1005 1|15 low Small-Large isolated
## 894 5 20 1005 1|15 low Small-Large isolated
## 895 5 20 1005 1|15 low Small-Large isolated
## 896 5 20 1005 1|15 low Small-Large isolated
## 897 5 20 1005 1|15 low Small-Large isolated
## 898 5 20 1005 1|15 low Small-Large isolated
## 899 5 20 1005 1|15 low Small-Large isolated
## 900 5 20 1005 1|15 low Small-Large isolated
## 901 5 20 1005 1|15 low Small-Large isolated
## 902 5 20 1005 1|15 low Small-Large isolated
## 903 5 20 1005 1|15 low Small-Large isolated
## 904 5 20 1005 1|15 low Small-Large isolated
## 905 5 20 1005 1|15 low Small-Large isolated
## 906 5 20 1005 1|15 low Small-Large isolated
## 907 5 20 1005 1|15 low Small-Large isolated
## 908 5 20 1005 1|15 low Small-Large isolated
## 909 5 20 1005 1|15 low Small-Large isolated
## 910 5 20 1005 1|15 low Small-Large isolated
## 911 5 20 1005 1|15 low Small-Large isolated
## 912 5 20 1005 1|15 low Small-Large isolated
## 913 6 24 1005 1|15 low Small-Large isolated
## 914 6 24 1005 1|15 low Small-Large isolated
## 915 6 24 1005 1|15 low Small-Large isolated
## 916 6 24 1005 1|15 low Small-Large isolated
## 917 6 24 1005 1|15 low Small-Large isolated
## 918 6 24 1005 1|15 low Small-Large isolated
## 919 6 24 1005 1|15 low Small-Large isolated
## 920 6 24 1005 1|15 low Small-Large isolated
## 921 6 24 1005 1|15 low Small-Large isolated
## 922 6 24 1005 1|15 low Small-Large isolated
## 923 6 24 1005 1|15 low Small-Large isolated
## 924 6 24 1005 1|15 low Small-Large isolated
## 925 6 24 1005 1|15 low Small-Large isolated
## 926 6 24 1005 1|15 low Small-Large isolated
## 927 6 24 1005 1|15 low Small-Large isolated
## 928 6 24 1005 1|15 low Small-Large isolated
## 929 6 24 1005 1|15 low Small-Large isolated
## 930 6 24 1005 1|15 low Small-Large isolated
## 931 6 24 1005 1|15 low Small-Large isolated
## 932 6 24 1005 1|15 low Small-Large isolated
## 933 6 24 1005 1|15 low Small-Large isolated
## 934 6 24 1005 1|15 low Small-Large isolated
## 935 6 24 1005 1|15 low Small-Large isolated
## 936 6 24 1005 1|15 low Small-Large isolated
## 937 7 28 1005 1|15 low Small-Large isolated
## 938 7 28 1005 1|15 low Small-Large isolated
## 939 7 28 1005 1|15 low Small-Large isolated
## 940 7 28 1005 1|15 low Small-Large isolated
## 941 7 28 1005 1|15 low Small-Large isolated
## 942 7 28 1005 1|15 low Small-Large isolated
## 943 7 28 1005 1|15 low Small-Large isolated
## 944 7 28 1005 1|15 low Small-Large isolated
## 945 7 28 1005 1|15 low Small-Large isolated
## 946 7 28 1005 1|15 low Small-Large isolated
## 947 7 28 1005 1|15 low Small-Large isolated
## 948 7 28 1005 1|15 low Small-Large isolated
## 949 7 28 1005 1|15 low Small-Large isolated
## 950 7 28 1005 1|15 low Small-Large isolated
## 951 7 28 1005 1|15 low Small-Large isolated
## 952 7 28 1005 1|15 low Small-Large isolated
## 953 7 28 1005 1|15 low Small-Large isolated
## 954 7 28 1005 1|15 low Small-Large isolated
## 955 7 28 1005 1|15 low Small-Large isolated
## 956 7 28 1005 1|15 low Small-Large isolated
## 957 7 28 1005 1|15 low Small-Large isolated
## 958 7 28 1005 1|15 low Small-Large isolated
## 959 7 28 1005 1|15 low Small-Large isolated
## 960 7 28 1005 1|15 low Small-Large isolated
## 961 0 0 1006 2|11 low Small-Large isolated
## 962 0 0 1006 2|11 low Small-Large isolated
## 963 0 0 1006 2|11 low Small-Large isolated
## 964 0 0 1006 2|11 low Small-Large isolated
## 965 0 0 1006 2|11 low Small-Large isolated
## 966 0 0 1006 2|11 low Small-Large isolated
## 967 0 0 1006 2|11 low Small-Large isolated
## 968 0 0 1006 2|11 low Small-Large isolated
## 969 0 0 1006 2|11 low Small-Large isolated
## 970 0 0 1006 2|11 low Small-Large isolated
## 971 0 0 1006 2|11 low Small-Large isolated
## 972 0 0 1006 2|11 low Small-Large isolated
## 973 0 0 1006 2|11 low Small-Large isolated
## 974 0 0 1006 2|11 low Small-Large isolated
## 975 0 0 1006 2|11 low Small-Large isolated
## 976 0 0 1006 2|11 low Small-Large isolated
## 977 0 0 1006 2|11 low Small-Large isolated
## 978 0 0 1006 2|11 low Small-Large isolated
## 979 0 0 1006 2|11 low Small-Large isolated
## 980 0 0 1006 2|11 low Small-Large isolated
## 981 0 0 1006 2|11 low Small-Large isolated
## 982 0 0 1006 2|11 low Small-Large isolated
## 983 0 0 1006 2|11 low Small-Large isolated
## 984 0 0 1006 2|11 low Small-Large isolated
## 985 1 4 1006 2|11 low Small-Large isolated
## 986 1 4 1006 2|11 low Small-Large isolated
## 987 1 4 1006 2|11 low Small-Large isolated
## 988 1 4 1006 2|11 low Small-Large isolated
## 989 1 4 1006 2|11 low Small-Large isolated
## 990 1 4 1006 2|11 low Small-Large isolated
## 991 1 4 1006 2|11 low Small-Large isolated
## 992 1 4 1006 2|11 low Small-Large isolated
## 993 1 4 1006 2|11 low Small-Large isolated
## 994 1 4 1006 2|11 low Small-Large isolated
## 995 1 4 1006 2|11 low Small-Large isolated
## 996 1 4 1006 2|11 low Small-Large isolated
## 997 1 4 1006 2|11 low Small-Large isolated
## 998 1 4 1006 2|11 low Small-Large isolated
## 999 1 4 1006 2|11 low Small-Large isolated
## 1000 1 4 1006 2|11 low Small-Large isolated
## 1001 1 4 1006 2|11 low Small-Large isolated
## 1002 1 4 1006 2|11 low Small-Large isolated
## 1003 1 4 1006 2|11 low Small-Large isolated
## 1004 1 4 1006 2|11 low Small-Large isolated
## 1005 1 4 1006 2|11 low Small-Large isolated
## 1006 1 4 1006 2|11 low Small-Large isolated
## 1007 1 4 1006 2|11 low Small-Large isolated
## 1008 1 4 1006 2|11 low Small-Large isolated
## 1009 2 8 1006 2|11 low Small-Large isolated
## 1010 2 8 1006 2|11 low Small-Large isolated
## 1011 2 8 1006 2|11 low Small-Large isolated
## 1012 2 8 1006 2|11 low Small-Large isolated
## 1013 2 8 1006 2|11 low Small-Large isolated
## 1014 2 8 1006 2|11 low Small-Large isolated
## 1015 2 8 1006 2|11 low Small-Large isolated
## 1016 2 8 1006 2|11 low Small-Large isolated
## 1017 2 8 1006 2|11 low Small-Large isolated
## 1018 2 8 1006 2|11 low Small-Large isolated
## 1019 2 8 1006 2|11 low Small-Large isolated
## 1020 2 8 1006 2|11 low Small-Large isolated
## 1021 2 8 1006 2|11 low Small-Large isolated
## 1022 2 8 1006 2|11 low Small-Large isolated
## 1023 2 8 1006 2|11 low Small-Large isolated
## 1024 2 8 1006 2|11 low Small-Large isolated
## 1025 2 8 1006 2|11 low Small-Large isolated
## 1026 2 8 1006 2|11 low Small-Large isolated
## 1027 2 8 1006 2|11 low Small-Large isolated
## 1028 2 8 1006 2|11 low Small-Large isolated
## 1029 2 8 1006 2|11 low Small-Large isolated
## 1030 2 8 1006 2|11 low Small-Large isolated
## 1031 2 8 1006 2|11 low Small-Large isolated
## 1032 2 8 1006 2|11 low Small-Large isolated
## 1033 3 12 1006 2|11 low Small-Large isolated
## 1034 3 12 1006 2|11 low Small-Large isolated
## 1035 3 12 1006 2|11 low Small-Large isolated
## 1036 3 12 1006 2|11 low Small-Large isolated
## 1037 3 12 1006 2|11 low Small-Large isolated
## 1038 3 12 1006 2|11 low Small-Large isolated
## 1039 3 12 1006 2|11 low Small-Large isolated
## 1040 3 12 1006 2|11 low Small-Large isolated
## 1041 3 12 1006 2|11 low Small-Large isolated
## 1042 3 12 1006 2|11 low Small-Large isolated
## 1043 3 12 1006 2|11 low Small-Large isolated
## 1044 3 12 1006 2|11 low Small-Large isolated
## 1045 3 12 1006 2|11 low Small-Large isolated
## 1046 3 12 1006 2|11 low Small-Large isolated
## 1047 3 12 1006 2|11 low Small-Large isolated
## 1048 3 12 1006 2|11 low Small-Large isolated
## 1049 3 12 1006 2|11 low Small-Large isolated
## 1050 3 12 1006 2|11 low Small-Large isolated
## 1051 3 12 1006 2|11 low Small-Large isolated
## 1052 3 12 1006 2|11 low Small-Large isolated
## 1053 3 12 1006 2|11 low Small-Large isolated
## 1054 3 12 1006 2|11 low Small-Large isolated
## 1055 3 12 1006 2|11 low Small-Large isolated
## 1056 3 12 1006 2|11 low Small-Large isolated
## 1057 4 16 1006 2|11 low Small-Large isolated
## 1058 4 16 1006 2|11 low Small-Large isolated
## 1059 4 16 1006 2|11 low Small-Large isolated
## 1060 4 16 1006 2|11 low Small-Large isolated
## 1061 4 16 1006 2|11 low Small-Large isolated
## 1062 4 16 1006 2|11 low Small-Large isolated
## 1063 4 16 1006 2|11 low Small-Large isolated
## 1064 4 16 1006 2|11 low Small-Large isolated
## 1065 4 16 1006 2|11 low Small-Large isolated
## 1066 4 16 1006 2|11 low Small-Large isolated
## 1067 4 16 1006 2|11 low Small-Large isolated
## 1068 4 16 1006 2|11 low Small-Large isolated
## 1069 4 16 1006 2|11 low Small-Large isolated
## 1070 4 16 1006 2|11 low Small-Large isolated
## 1071 4 16 1006 2|11 low Small-Large isolated
## 1072 4 16 1006 2|11 low Small-Large isolated
## 1073 4 16 1006 2|11 low Small-Large isolated
## 1074 4 16 1006 2|11 low Small-Large isolated
## 1075 4 16 1006 2|11 low Small-Large isolated
## 1076 4 16 1006 2|11 low Small-Large isolated
## 1077 4 16 1006 2|11 low Small-Large isolated
## 1078 4 16 1006 2|11 low Small-Large isolated
## 1079 4 16 1006 2|11 low Small-Large isolated
## 1080 4 16 1006 2|11 low Small-Large isolated
## 1081 5 20 1006 2|11 low Small-Large isolated
## 1082 5 20 1006 2|11 low Small-Large isolated
## 1083 5 20 1006 2|11 low Small-Large isolated
## 1084 5 20 1006 2|11 low Small-Large isolated
## 1085 5 20 1006 2|11 low Small-Large isolated
## 1086 5 20 1006 2|11 low Small-Large isolated
## 1087 5 20 1006 2|11 low Small-Large isolated
## 1088 5 20 1006 2|11 low Small-Large isolated
## 1089 5 20 1006 2|11 low Small-Large isolated
## 1090 5 20 1006 2|11 low Small-Large isolated
## 1091 5 20 1006 2|11 low Small-Large isolated
## 1092 5 20 1006 2|11 low Small-Large isolated
## 1093 5 20 1006 2|11 low Small-Large isolated
## 1094 5 20 1006 2|11 low Small-Large isolated
## 1095 5 20 1006 2|11 low Small-Large isolated
## 1096 5 20 1006 2|11 low Small-Large isolated
## 1097 5 20 1006 2|11 low Small-Large isolated
## 1098 5 20 1006 2|11 low Small-Large isolated
## 1099 5 20 1006 2|11 low Small-Large isolated
## 1100 5 20 1006 2|11 low Small-Large isolated
## 1101 5 20 1006 2|11 low Small-Large isolated
## 1102 5 20 1006 2|11 low Small-Large isolated
## 1103 5 20 1006 2|11 low Small-Large isolated
## 1104 5 20 1006 2|11 low Small-Large isolated
## 1105 6 24 1006 2|11 low Small-Large isolated
## 1106 6 24 1006 2|11 low Small-Large isolated
## 1107 6 24 1006 2|11 low Small-Large isolated
## 1108 6 24 1006 2|11 low Small-Large isolated
## 1109 6 24 1006 2|11 low Small-Large isolated
## 1110 6 24 1006 2|11 low Small-Large isolated
## 1111 6 24 1006 2|11 low Small-Large isolated
## 1112 6 24 1006 2|11 low Small-Large isolated
## 1113 6 24 1006 2|11 low Small-Large isolated
## 1114 6 24 1006 2|11 low Small-Large isolated
## 1115 6 24 1006 2|11 low Small-Large isolated
## 1116 6 24 1006 2|11 low Small-Large isolated
## 1117 6 24 1006 2|11 low Small-Large isolated
## 1118 6 24 1006 2|11 low Small-Large isolated
## 1119 6 24 1006 2|11 low Small-Large isolated
## 1120 6 24 1006 2|11 low Small-Large isolated
## 1121 6 24 1006 2|11 low Small-Large isolated
## 1122 6 24 1006 2|11 low Small-Large isolated
## 1123 6 24 1006 2|11 low Small-Large isolated
## 1124 6 24 1006 2|11 low Small-Large isolated
## 1125 6 24 1006 2|11 low Small-Large isolated
## 1126 6 24 1006 2|11 low Small-Large isolated
## 1127 6 24 1006 2|11 low Small-Large isolated
## 1128 6 24 1006 2|11 low Small-Large isolated
## 1129 7 28 1006 2|11 low Small-Large isolated
## 1130 7 28 1006 2|11 low Small-Large isolated
## 1131 7 28 1006 2|11 low Small-Large isolated
## 1132 7 28 1006 2|11 low Small-Large isolated
## 1133 7 28 1006 2|11 low Small-Large isolated
## 1134 7 28 1006 2|11 low Small-Large isolated
## 1135 7 28 1006 2|11 low Small-Large isolated
## 1136 7 28 1006 2|11 low Small-Large isolated
## 1137 7 28 1006 2|11 low Small-Large isolated
## 1138 7 28 1006 2|11 low Small-Large isolated
## 1139 7 28 1006 2|11 low Small-Large isolated
## 1140 7 28 1006 2|11 low Small-Large isolated
## 1141 7 28 1006 2|11 low Small-Large isolated
## 1142 7 28 1006 2|11 low Small-Large isolated
## 1143 7 28 1006 2|11 low Small-Large isolated
## 1144 7 28 1006 2|11 low Small-Large isolated
## 1145 7 28 1006 2|11 low Small-Large isolated
## 1146 7 28 1006 2|11 low Small-Large isolated
## 1147 7 28 1006 2|11 low Small-Large isolated
## 1148 7 28 1006 2|11 low Small-Large isolated
## 1149 7 28 1006 2|11 low Small-Large isolated
## 1150 7 28 1006 2|11 low Small-Large isolated
## 1151 7 28 1006 2|11 low Small-Large isolated
## 1152 7 28 1006 2|11 low Small-Large isolated
## 1153 0 0 1007 2|12 low Small-Large isolated
## 1154 0 0 1007 2|12 low Small-Large isolated
## 1155 0 0 1007 2|12 low Small-Large isolated
## 1156 0 0 1007 2|12 low Small-Large isolated
## 1157 0 0 1007 2|12 low Small-Large isolated
## 1158 0 0 1007 2|12 low Small-Large isolated
## 1159 0 0 1007 2|12 low Small-Large isolated
## 1160 0 0 1007 2|12 low Small-Large isolated
## 1161 0 0 1007 2|12 low Small-Large isolated
## 1162 0 0 1007 2|12 low Small-Large isolated
## 1163 0 0 1007 2|12 low Small-Large isolated
## 1164 0 0 1007 2|12 low Small-Large isolated
## 1165 0 0 1007 2|12 low Small-Large isolated
## 1166 0 0 1007 2|12 low Small-Large isolated
## 1167 0 0 1007 2|12 low Small-Large isolated
## 1168 0 0 1007 2|12 low Small-Large isolated
## 1169 0 0 1007 2|12 low Small-Large isolated
## 1170 0 0 1007 2|12 low Small-Large isolated
## 1171 0 0 1007 2|12 low Small-Large isolated
## 1172 0 0 1007 2|12 low Small-Large isolated
## 1173 0 0 1007 2|12 low Small-Large isolated
## 1174 0 0 1007 2|12 low Small-Large isolated
## 1175 0 0 1007 2|12 low Small-Large isolated
## 1176 0 0 1007 2|12 low Small-Large isolated
## 1177 1 4 1007 2|12 low Small-Large isolated
## 1178 1 4 1007 2|12 low Small-Large isolated
## 1179 1 4 1007 2|12 low Small-Large isolated
## 1180 1 4 1007 2|12 low Small-Large isolated
## 1181 1 4 1007 2|12 low Small-Large isolated
## 1182 1 4 1007 2|12 low Small-Large isolated
## 1183 1 4 1007 2|12 low Small-Large isolated
## 1184 1 4 1007 2|12 low Small-Large isolated
## 1185 1 4 1007 2|12 low Small-Large isolated
## 1186 1 4 1007 2|12 low Small-Large isolated
## 1187 1 4 1007 2|12 low Small-Large isolated
## 1188 1 4 1007 2|12 low Small-Large isolated
## 1189 1 4 1007 2|12 low Small-Large isolated
## 1190 1 4 1007 2|12 low Small-Large isolated
## 1191 1 4 1007 2|12 low Small-Large isolated
## 1192 1 4 1007 2|12 low Small-Large isolated
## 1193 1 4 1007 2|12 low Small-Large isolated
## 1194 1 4 1007 2|12 low Small-Large isolated
## 1195 1 4 1007 2|12 low Small-Large isolated
## 1196 1 4 1007 2|12 low Small-Large isolated
## 1197 1 4 1007 2|12 low Small-Large isolated
## 1198 1 4 1007 2|12 low Small-Large isolated
## 1199 1 4 1007 2|12 low Small-Large isolated
## 1200 1 4 1007 2|12 low Small-Large isolated
## 1201 2 8 1007 2|12 low Small-Large isolated
## 1202 2 8 1007 2|12 low Small-Large isolated
## 1203 2 8 1007 2|12 low Small-Large isolated
## 1204 2 8 1007 2|12 low Small-Large isolated
## 1205 2 8 1007 2|12 low Small-Large isolated
## 1206 2 8 1007 2|12 low Small-Large isolated
## 1207 2 8 1007 2|12 low Small-Large isolated
## 1208 2 8 1007 2|12 low Small-Large isolated
## 1209 2 8 1007 2|12 low Small-Large isolated
## 1210 2 8 1007 2|12 low Small-Large isolated
## 1211 2 8 1007 2|12 low Small-Large isolated
## 1212 2 8 1007 2|12 low Small-Large isolated
## 1213 2 8 1007 2|12 low Small-Large isolated
## 1214 2 8 1007 2|12 low Small-Large isolated
## 1215 2 8 1007 2|12 low Small-Large isolated
## 1216 2 8 1007 2|12 low Small-Large isolated
## 1217 2 8 1007 2|12 low Small-Large isolated
## 1218 2 8 1007 2|12 low Small-Large isolated
## 1219 2 8 1007 2|12 low Small-Large isolated
## 1220 2 8 1007 2|12 low Small-Large isolated
## 1221 2 8 1007 2|12 low Small-Large isolated
## 1222 2 8 1007 2|12 low Small-Large isolated
## 1223 2 8 1007 2|12 low Small-Large isolated
## 1224 2 8 1007 2|12 low Small-Large isolated
## 1225 3 12 1007 2|12 low Small-Large isolated
## 1226 3 12 1007 2|12 low Small-Large isolated
## 1227 3 12 1007 2|12 low Small-Large isolated
## 1228 3 12 1007 2|12 low Small-Large isolated
## 1229 3 12 1007 2|12 low Small-Large isolated
## 1230 3 12 1007 2|12 low Small-Large isolated
## 1231 3 12 1007 2|12 low Small-Large isolated
## 1232 3 12 1007 2|12 low Small-Large isolated
## 1233 3 12 1007 2|12 low Small-Large isolated
## 1234 3 12 1007 2|12 low Small-Large isolated
## 1235 3 12 1007 2|12 low Small-Large isolated
## 1236 3 12 1007 2|12 low Small-Large isolated
## 1237 3 12 1007 2|12 low Small-Large isolated
## 1238 3 12 1007 2|12 low Small-Large isolated
## 1239 3 12 1007 2|12 low Small-Large isolated
## 1240 3 12 1007 2|12 low Small-Large isolated
## 1241 3 12 1007 2|12 low Small-Large isolated
## 1242 3 12 1007 2|12 low Small-Large isolated
## 1243 3 12 1007 2|12 low Small-Large isolated
## 1244 3 12 1007 2|12 low Small-Large isolated
## 1245 3 12 1007 2|12 low Small-Large isolated
## 1246 3 12 1007 2|12 low Small-Large isolated
## 1247 3 12 1007 2|12 low Small-Large isolated
## 1248 3 12 1007 2|12 low Small-Large isolated
## 1249 4 16 1007 2|12 low Small-Large isolated
## 1250 4 16 1007 2|12 low Small-Large isolated
## 1251 4 16 1007 2|12 low Small-Large isolated
## 1252 4 16 1007 2|12 low Small-Large isolated
## 1253 4 16 1007 2|12 low Small-Large isolated
## 1254 4 16 1007 2|12 low Small-Large isolated
## 1255 4 16 1007 2|12 low Small-Large isolated
## 1256 4 16 1007 2|12 low Small-Large isolated
## 1257 4 16 1007 2|12 low Small-Large isolated
## 1258 4 16 1007 2|12 low Small-Large isolated
## 1259 4 16 1007 2|12 low Small-Large isolated
## 1260 4 16 1007 2|12 low Small-Large isolated
## 1261 4 16 1007 2|12 low Small-Large isolated
## 1262 4 16 1007 2|12 low Small-Large isolated
## 1263 4 16 1007 2|12 low Small-Large isolated
## 1264 4 16 1007 2|12 low Small-Large isolated
## 1265 4 16 1007 2|12 low Small-Large isolated
## 1266 4 16 1007 2|12 low Small-Large isolated
## 1267 4 16 1007 2|12 low Small-Large isolated
## 1268 4 16 1007 2|12 low Small-Large isolated
## 1269 4 16 1007 2|12 low Small-Large isolated
## 1270 4 16 1007 2|12 low Small-Large isolated
## 1271 4 16 1007 2|12 low Small-Large isolated
## 1272 4 16 1007 2|12 low Small-Large isolated
## 1273 5 20 1007 2|12 low Small-Large isolated
## 1274 5 20 1007 2|12 low Small-Large isolated
## 1275 5 20 1007 2|12 low Small-Large isolated
## 1276 5 20 1007 2|12 low Small-Large isolated
## 1277 5 20 1007 2|12 low Small-Large isolated
## 1278 5 20 1007 2|12 low Small-Large isolated
## 1279 5 20 1007 2|12 low Small-Large isolated
## 1280 5 20 1007 2|12 low Small-Large isolated
## 1281 5 20 1007 2|12 low Small-Large isolated
## 1282 5 20 1007 2|12 low Small-Large isolated
## 1283 5 20 1007 2|12 low Small-Large isolated
## 1284 5 20 1007 2|12 low Small-Large isolated
## 1285 5 20 1007 2|12 low Small-Large isolated
## 1286 5 20 1007 2|12 low Small-Large isolated
## 1287 5 20 1007 2|12 low Small-Large isolated
## 1288 5 20 1007 2|12 low Small-Large isolated
## 1289 5 20 1007 2|12 low Small-Large isolated
## 1290 5 20 1007 2|12 low Small-Large isolated
## 1291 5 20 1007 2|12 low Small-Large isolated
## 1292 5 20 1007 2|12 low Small-Large isolated
## 1293 5 20 1007 2|12 low Small-Large isolated
## 1294 5 20 1007 2|12 low Small-Large isolated
## 1295 5 20 1007 2|12 low Small-Large isolated
## 1296 5 20 1007 2|12 low Small-Large isolated
## 1297 6 24 1007 2|12 low Small-Large isolated
## 1298 6 24 1007 2|12 low Small-Large isolated
## 1299 6 24 1007 2|12 low Small-Large isolated
## 1300 6 24 1007 2|12 low Small-Large isolated
## 1301 6 24 1007 2|12 low Small-Large isolated
## 1302 6 24 1007 2|12 low Small-Large isolated
## 1303 6 24 1007 2|12 low Small-Large isolated
## 1304 6 24 1007 2|12 low Small-Large isolated
## 1305 6 24 1007 2|12 low Small-Large isolated
## 1306 6 24 1007 2|12 low Small-Large isolated
## 1307 6 24 1007 2|12 low Small-Large isolated
## 1308 6 24 1007 2|12 low Small-Large isolated
## 1309 6 24 1007 2|12 low Small-Large isolated
## 1310 6 24 1007 2|12 low Small-Large isolated
## 1311 6 24 1007 2|12 low Small-Large isolated
## 1312 6 24 1007 2|12 low Small-Large isolated
## 1313 6 24 1007 2|12 low Small-Large isolated
## 1314 6 24 1007 2|12 low Small-Large isolated
## 1315 6 24 1007 2|12 low Small-Large isolated
## 1316 6 24 1007 2|12 low Small-Large isolated
## 1317 6 24 1007 2|12 low Small-Large isolated
## 1318 6 24 1007 2|12 low Small-Large isolated
## 1319 6 24 1007 2|12 low Small-Large isolated
## 1320 6 24 1007 2|12 low Small-Large isolated
## 1321 7 28 1007 2|12 low Small-Large isolated
## 1322 7 28 1007 2|12 low Small-Large isolated
## 1323 7 28 1007 2|12 low Small-Large isolated
## 1324 7 28 1007 2|12 low Small-Large isolated
## 1325 7 28 1007 2|12 low Small-Large isolated
## 1326 7 28 1007 2|12 low Small-Large isolated
## 1327 7 28 1007 2|12 low Small-Large isolated
## 1328 7 28 1007 2|12 low Small-Large isolated
## 1329 7 28 1007 2|12 low Small-Large isolated
## 1330 7 28 1007 2|12 low Small-Large isolated
## 1331 7 28 1007 2|12 low Small-Large isolated
## 1332 7 28 1007 2|12 low Small-Large isolated
## 1333 7 28 1007 2|12 low Small-Large isolated
## 1334 7 28 1007 2|12 low Small-Large isolated
## 1335 7 28 1007 2|12 low Small-Large isolated
## 1336 7 28 1007 2|12 low Small-Large isolated
## 1337 7 28 1007 2|12 low Small-Large isolated
## 1338 7 28 1007 2|12 low Small-Large isolated
## 1339 7 28 1007 2|12 low Small-Large isolated
## 1340 7 28 1007 2|12 low Small-Large isolated
## 1341 7 28 1007 2|12 low Small-Large isolated
## 1342 7 28 1007 2|12 low Small-Large isolated
## 1343 7 28 1007 2|12 low Small-Large isolated
## 1344 7 28 1007 2|12 low Small-Large isolated
## 1345 0 0 1008 2|13 low Small-Large isolated
## 1346 0 0 1008 2|13 low Small-Large isolated
## 1347 0 0 1008 2|13 low Small-Large isolated
## 1348 0 0 1008 2|13 low Small-Large isolated
## 1349 0 0 1008 2|13 low Small-Large isolated
## 1350 0 0 1008 2|13 low Small-Large isolated
## 1351 0 0 1008 2|13 low Small-Large isolated
## 1352 0 0 1008 2|13 low Small-Large isolated
## 1353 0 0 1008 2|13 low Small-Large isolated
## 1354 0 0 1008 2|13 low Small-Large isolated
## 1355 0 0 1008 2|13 low Small-Large isolated
## 1356 0 0 1008 2|13 low Small-Large isolated
## 1357 0 0 1008 2|13 low Small-Large isolated
## 1358 0 0 1008 2|13 low Small-Large isolated
## 1359 0 0 1008 2|13 low Small-Large isolated
## 1360 0 0 1008 2|13 low Small-Large isolated
## 1361 0 0 1008 2|13 low Small-Large isolated
## 1362 0 0 1008 2|13 low Small-Large isolated
## 1363 0 0 1008 2|13 low Small-Large isolated
## 1364 0 0 1008 2|13 low Small-Large isolated
## 1365 0 0 1008 2|13 low Small-Large isolated
## 1366 0 0 1008 2|13 low Small-Large isolated
## 1367 0 0 1008 2|13 low Small-Large isolated
## 1368 0 0 1008 2|13 low Small-Large isolated
## 1369 1 4 1008 2|13 low Small-Large isolated
## 1370 1 4 1008 2|13 low Small-Large isolated
## 1371 1 4 1008 2|13 low Small-Large isolated
## 1372 1 4 1008 2|13 low Small-Large isolated
## 1373 1 4 1008 2|13 low Small-Large isolated
## 1374 1 4 1008 2|13 low Small-Large isolated
## 1375 1 4 1008 2|13 low Small-Large isolated
## 1376 1 4 1008 2|13 low Small-Large isolated
## 1377 1 4 1008 2|13 low Small-Large isolated
## 1378 1 4 1008 2|13 low Small-Large isolated
## 1379 1 4 1008 2|13 low Small-Large isolated
## 1380 1 4 1008 2|13 low Small-Large isolated
## 1381 1 4 1008 2|13 low Small-Large isolated
## 1382 1 4 1008 2|13 low Small-Large isolated
## 1383 1 4 1008 2|13 low Small-Large isolated
## 1384 1 4 1008 2|13 low Small-Large isolated
## 1385 1 4 1008 2|13 low Small-Large isolated
## 1386 1 4 1008 2|13 low Small-Large isolated
## 1387 1 4 1008 2|13 low Small-Large isolated
## 1388 1 4 1008 2|13 low Small-Large isolated
## 1389 1 4 1008 2|13 low Small-Large isolated
## 1390 1 4 1008 2|13 low Small-Large isolated
## 1391 1 4 1008 2|13 low Small-Large isolated
## 1392 1 4 1008 2|13 low Small-Large isolated
## 1393 2 8 1008 2|13 low Small-Large isolated
## 1394 2 8 1008 2|13 low Small-Large isolated
## 1395 2 8 1008 2|13 low Small-Large isolated
## 1396 2 8 1008 2|13 low Small-Large isolated
## 1397 2 8 1008 2|13 low Small-Large isolated
## 1398 2 8 1008 2|13 low Small-Large isolated
## 1399 2 8 1008 2|13 low Small-Large isolated
## 1400 2 8 1008 2|13 low Small-Large isolated
## 1401 2 8 1008 2|13 low Small-Large isolated
## 1402 2 8 1008 2|13 low Small-Large isolated
## 1403 2 8 1008 2|13 low Small-Large isolated
## 1404 2 8 1008 2|13 low Small-Large isolated
## 1405 2 8 1008 2|13 low Small-Large isolated
## 1406 2 8 1008 2|13 low Small-Large isolated
## 1407 2 8 1008 2|13 low Small-Large isolated
## 1408 2 8 1008 2|13 low Small-Large isolated
## 1409 2 8 1008 2|13 low Small-Large isolated
## 1410 2 8 1008 2|13 low Small-Large isolated
## 1411 2 8 1008 2|13 low Small-Large isolated
## 1412 2 8 1008 2|13 low Small-Large isolated
## 1413 2 8 1008 2|13 low Small-Large isolated
## 1414 2 8 1008 2|13 low Small-Large isolated
## 1415 2 8 1008 2|13 low Small-Large isolated
## 1416 2 8 1008 2|13 low Small-Large isolated
## 1417 3 12 1008 2|13 low Small-Large isolated
## 1418 3 12 1008 2|13 low Small-Large isolated
## 1419 3 12 1008 2|13 low Small-Large isolated
## 1420 3 12 1008 2|13 low Small-Large isolated
## 1421 3 12 1008 2|13 low Small-Large isolated
## 1422 3 12 1008 2|13 low Small-Large isolated
## 1423 3 12 1008 2|13 low Small-Large isolated
## 1424 3 12 1008 2|13 low Small-Large isolated
## 1425 3 12 1008 2|13 low Small-Large isolated
## 1426 3 12 1008 2|13 low Small-Large isolated
## 1427 3 12 1008 2|13 low Small-Large isolated
## 1428 3 12 1008 2|13 low Small-Large isolated
## 1429 3 12 1008 2|13 low Small-Large isolated
## 1430 3 12 1008 2|13 low Small-Large isolated
## 1431 3 12 1008 2|13 low Small-Large isolated
## 1432 3 12 1008 2|13 low Small-Large isolated
## 1433 3 12 1008 2|13 low Small-Large isolated
## 1434 3 12 1008 2|13 low Small-Large isolated
## 1435 3 12 1008 2|13 low Small-Large isolated
## 1436 3 12 1008 2|13 low Small-Large isolated
## 1437 3 12 1008 2|13 low Small-Large isolated
## 1438 3 12 1008 2|13 low Small-Large isolated
## 1439 3 12 1008 2|13 low Small-Large isolated
## 1440 3 12 1008 2|13 low Small-Large isolated
## 1441 4 16 1008 2|13 low Small-Large isolated
## 1442 4 16 1008 2|13 low Small-Large isolated
## 1443 4 16 1008 2|13 low Small-Large isolated
## 1444 4 16 1008 2|13 low Small-Large isolated
## 1445 4 16 1008 2|13 low Small-Large isolated
## 1446 4 16 1008 2|13 low Small-Large isolated
## 1447 4 16 1008 2|13 low Small-Large isolated
## 1448 4 16 1008 2|13 low Small-Large isolated
## 1449 4 16 1008 2|13 low Small-Large isolated
## 1450 4 16 1008 2|13 low Small-Large isolated
## 1451 4 16 1008 2|13 low Small-Large isolated
## 1452 4 16 1008 2|13 low Small-Large isolated
## 1453 4 16 1008 2|13 low Small-Large isolated
## 1454 4 16 1008 2|13 low Small-Large isolated
## 1455 4 16 1008 2|13 low Small-Large isolated
## 1456 4 16 1008 2|13 low Small-Large isolated
## 1457 4 16 1008 2|13 low Small-Large isolated
## 1458 4 16 1008 2|13 low Small-Large isolated
## 1459 4 16 1008 2|13 low Small-Large isolated
## 1460 4 16 1008 2|13 low Small-Large isolated
## 1461 4 16 1008 2|13 low Small-Large isolated
## 1462 4 16 1008 2|13 low Small-Large isolated
## 1463 4 16 1008 2|13 low Small-Large isolated
## 1464 4 16 1008 2|13 low Small-Large isolated
## 1465 5 20 1008 2|13 low Small-Large isolated
## 1466 5 20 1008 2|13 low Small-Large isolated
## 1467 5 20 1008 2|13 low Small-Large isolated
## 1468 5 20 1008 2|13 low Small-Large isolated
## 1469 5 20 1008 2|13 low Small-Large isolated
## 1470 5 20 1008 2|13 low Small-Large isolated
## 1471 5 20 1008 2|13 low Small-Large isolated
## 1472 5 20 1008 2|13 low Small-Large isolated
## 1473 5 20 1008 2|13 low Small-Large isolated
## 1474 5 20 1008 2|13 low Small-Large isolated
## 1475 5 20 1008 2|13 low Small-Large isolated
## 1476 5 20 1008 2|13 low Small-Large isolated
## 1477 5 20 1008 2|13 low Small-Large isolated
## 1478 5 20 1008 2|13 low Small-Large isolated
## 1479 5 20 1008 2|13 low Small-Large isolated
## 1480 5 20 1008 2|13 low Small-Large isolated
## 1481 5 20 1008 2|13 low Small-Large isolated
## 1482 5 20 1008 2|13 low Small-Large isolated
## 1483 5 20 1008 2|13 low Small-Large isolated
## 1484 5 20 1008 2|13 low Small-Large isolated
## 1485 5 20 1008 2|13 low Small-Large isolated
## 1486 5 20 1008 2|13 low Small-Large isolated
## 1487 5 20 1008 2|13 low Small-Large isolated
## 1488 5 20 1008 2|13 low Small-Large isolated
## 1489 6 24 1008 2|13 low Small-Large isolated
## 1490 6 24 1008 2|13 low Small-Large isolated
## 1491 6 24 1008 2|13 low Small-Large isolated
## 1492 6 24 1008 2|13 low Small-Large isolated
## 1493 6 24 1008 2|13 low Small-Large isolated
## 1494 6 24 1008 2|13 low Small-Large isolated
## 1495 6 24 1008 2|13 low Small-Large isolated
## 1496 6 24 1008 2|13 low Small-Large isolated
## 1497 6 24 1008 2|13 low Small-Large isolated
## 1498 6 24 1008 2|13 low Small-Large isolated
## 1499 6 24 1008 2|13 low Small-Large isolated
## 1500 6 24 1008 2|13 low Small-Large isolated
## 1501 6 24 1008 2|13 low Small-Large isolated
## 1502 6 24 1008 2|13 low Small-Large isolated
## 1503 6 24 1008 2|13 low Small-Large isolated
## 1504 6 24 1008 2|13 low Small-Large isolated
## 1505 6 24 1008 2|13 low Small-Large isolated
## 1506 6 24 1008 2|13 low Small-Large isolated
## 1507 6 24 1008 2|13 low Small-Large isolated
## 1508 6 24 1008 2|13 low Small-Large isolated
## 1509 6 24 1008 2|13 low Small-Large isolated
## 1510 6 24 1008 2|13 low Small-Large isolated
## 1511 6 24 1008 2|13 low Small-Large isolated
## 1512 6 24 1008 2|13 low Small-Large isolated
## 1513 7 28 1008 2|13 low Small-Large isolated
## 1514 7 28 1008 2|13 low Small-Large isolated
## 1515 7 28 1008 2|13 low Small-Large isolated
## 1516 7 28 1008 2|13 low Small-Large isolated
## 1517 7 28 1008 2|13 low Small-Large isolated
## 1518 7 28 1008 2|13 low Small-Large isolated
## 1519 7 28 1008 2|13 low Small-Large isolated
## 1520 7 28 1008 2|13 low Small-Large isolated
## 1521 7 28 1008 2|13 low Small-Large isolated
## 1522 7 28 1008 2|13 low Small-Large isolated
## 1523 7 28 1008 2|13 low Small-Large isolated
## 1524 7 28 1008 2|13 low Small-Large isolated
## 1525 7 28 1008 2|13 low Small-Large isolated
## 1526 7 28 1008 2|13 low Small-Large isolated
## 1527 7 28 1008 2|13 low Small-Large isolated
## 1528 7 28 1008 2|13 low Small-Large isolated
## 1529 7 28 1008 2|13 low Small-Large isolated
## 1530 7 28 1008 2|13 low Small-Large isolated
## 1531 7 28 1008 2|13 low Small-Large isolated
## 1532 7 28 1008 2|13 low Small-Large isolated
## 1533 7 28 1008 2|13 low Small-Large isolated
## 1534 7 28 1008 2|13 low Small-Large isolated
## 1535 7 28 1008 2|13 low Small-Large isolated
## 1536 7 28 1008 2|13 low Small-Large isolated
## 1537 0 0 1009 2|14 low Small-Large isolated
## 1538 0 0 1009 2|14 low Small-Large isolated
## 1539 0 0 1009 2|14 low Small-Large isolated
## 1540 0 0 1009 2|14 low Small-Large isolated
## 1541 0 0 1009 2|14 low Small-Large isolated
## 1542 0 0 1009 2|14 low Small-Large isolated
## 1543 0 0 1009 2|14 low Small-Large isolated
## 1544 0 0 1009 2|14 low Small-Large isolated
## 1545 0 0 1009 2|14 low Small-Large isolated
## 1546 0 0 1009 2|14 low Small-Large isolated
## 1547 0 0 1009 2|14 low Small-Large isolated
## 1548 0 0 1009 2|14 low Small-Large isolated
## 1549 0 0 1009 2|14 low Small-Large isolated
## 1550 0 0 1009 2|14 low Small-Large isolated
## 1551 0 0 1009 2|14 low Small-Large isolated
## 1552 0 0 1009 2|14 low Small-Large isolated
## 1553 0 0 1009 2|14 low Small-Large isolated
## 1554 0 0 1009 2|14 low Small-Large isolated
## 1555 0 0 1009 2|14 low Small-Large isolated
## 1556 0 0 1009 2|14 low Small-Large isolated
## 1557 0 0 1009 2|14 low Small-Large isolated
## 1558 0 0 1009 2|14 low Small-Large isolated
## 1559 0 0 1009 2|14 low Small-Large isolated
## 1560 0 0 1009 2|14 low Small-Large isolated
## 1561 1 4 1009 2|14 low Small-Large isolated
## 1562 1 4 1009 2|14 low Small-Large isolated
## 1563 1 4 1009 2|14 low Small-Large isolated
## 1564 1 4 1009 2|14 low Small-Large isolated
## 1565 1 4 1009 2|14 low Small-Large isolated
## 1566 1 4 1009 2|14 low Small-Large isolated
## 1567 1 4 1009 2|14 low Small-Large isolated
## 1568 1 4 1009 2|14 low Small-Large isolated
## 1569 1 4 1009 2|14 low Small-Large isolated
## 1570 1 4 1009 2|14 low Small-Large isolated
## 1571 1 4 1009 2|14 low Small-Large isolated
## 1572 1 4 1009 2|14 low Small-Large isolated
## 1573 1 4 1009 2|14 low Small-Large isolated
## 1574 1 4 1009 2|14 low Small-Large isolated
## 1575 1 4 1009 2|14 low Small-Large isolated
## 1576 1 4 1009 2|14 low Small-Large isolated
## 1577 1 4 1009 2|14 low Small-Large isolated
## 1578 1 4 1009 2|14 low Small-Large isolated
## 1579 1 4 1009 2|14 low Small-Large isolated
## 1580 1 4 1009 2|14 low Small-Large isolated
## 1581 1 4 1009 2|14 low Small-Large isolated
## 1582 1 4 1009 2|14 low Small-Large isolated
## 1583 1 4 1009 2|14 low Small-Large isolated
## 1584 1 4 1009 2|14 low Small-Large isolated
## 1585 2 8 1009 2|14 low Small-Large isolated
## 1586 2 8 1009 2|14 low Small-Large isolated
## 1587 2 8 1009 2|14 low Small-Large isolated
## 1588 2 8 1009 2|14 low Small-Large isolated
## 1589 2 8 1009 2|14 low Small-Large isolated
## 1590 2 8 1009 2|14 low Small-Large isolated
## 1591 2 8 1009 2|14 low Small-Large isolated
## 1592 2 8 1009 2|14 low Small-Large isolated
## 1593 2 8 1009 2|14 low Small-Large isolated
## 1594 2 8 1009 2|14 low Small-Large isolated
## 1595 2 8 1009 2|14 low Small-Large isolated
## 1596 2 8 1009 2|14 low Small-Large isolated
## 1597 2 8 1009 2|14 low Small-Large isolated
## 1598 2 8 1009 2|14 low Small-Large isolated
## 1599 2 8 1009 2|14 low Small-Large isolated
## 1600 2 8 1009 2|14 low Small-Large isolated
## 1601 2 8 1009 2|14 low Small-Large isolated
## 1602 2 8 1009 2|14 low Small-Large isolated
## 1603 2 8 1009 2|14 low Small-Large isolated
## 1604 2 8 1009 2|14 low Small-Large isolated
## 1605 2 8 1009 2|14 low Small-Large isolated
## 1606 2 8 1009 2|14 low Small-Large isolated
## 1607 2 8 1009 2|14 low Small-Large isolated
## 1608 2 8 1009 2|14 low Small-Large isolated
## 1609 3 12 1009 2|14 low Small-Large isolated
## 1610 3 12 1009 2|14 low Small-Large isolated
## 1611 3 12 1009 2|14 low Small-Large isolated
## 1612 3 12 1009 2|14 low Small-Large isolated
## 1613 3 12 1009 2|14 low Small-Large isolated
## 1614 3 12 1009 2|14 low Small-Large isolated
## 1615 3 12 1009 2|14 low Small-Large isolated
## 1616 3 12 1009 2|14 low Small-Large isolated
## 1617 3 12 1009 2|14 low Small-Large isolated
## 1618 3 12 1009 2|14 low Small-Large isolated
## 1619 3 12 1009 2|14 low Small-Large isolated
## 1620 3 12 1009 2|14 low Small-Large isolated
## 1621 3 12 1009 2|14 low Small-Large isolated
## 1622 3 12 1009 2|14 low Small-Large isolated
## 1623 3 12 1009 2|14 low Small-Large isolated
## 1624 3 12 1009 2|14 low Small-Large isolated
## 1625 3 12 1009 2|14 low Small-Large isolated
## 1626 3 12 1009 2|14 low Small-Large isolated
## 1627 3 12 1009 2|14 low Small-Large isolated
## 1628 3 12 1009 2|14 low Small-Large isolated
## 1629 3 12 1009 2|14 low Small-Large isolated
## 1630 3 12 1009 2|14 low Small-Large isolated
## 1631 3 12 1009 2|14 low Small-Large isolated
## 1632 3 12 1009 2|14 low Small-Large isolated
## 1633 4 16 1009 2|14 low Small-Large isolated
## 1634 4 16 1009 2|14 low Small-Large isolated
## 1635 4 16 1009 2|14 low Small-Large isolated
## 1636 4 16 1009 2|14 low Small-Large isolated
## 1637 4 16 1009 2|14 low Small-Large isolated
## 1638 4 16 1009 2|14 low Small-Large isolated
## 1639 4 16 1009 2|14 low Small-Large isolated
## 1640 4 16 1009 2|14 low Small-Large isolated
## 1641 4 16 1009 2|14 low Small-Large isolated
## 1642 4 16 1009 2|14 low Small-Large isolated
## 1643 4 16 1009 2|14 low Small-Large isolated
## 1644 4 16 1009 2|14 low Small-Large isolated
## 1645 4 16 1009 2|14 low Small-Large isolated
## 1646 4 16 1009 2|14 low Small-Large isolated
## 1647 4 16 1009 2|14 low Small-Large isolated
## 1648 4 16 1009 2|14 low Small-Large isolated
## 1649 4 16 1009 2|14 low Small-Large isolated
## 1650 4 16 1009 2|14 low Small-Large isolated
## 1651 4 16 1009 2|14 low Small-Large isolated
## 1652 4 16 1009 2|14 low Small-Large isolated
## 1653 4 16 1009 2|14 low Small-Large isolated
## 1654 4 16 1009 2|14 low Small-Large isolated
## 1655 4 16 1009 2|14 low Small-Large isolated
## 1656 4 16 1009 2|14 low Small-Large isolated
## 1657 5 20 1009 2|14 low Small-Large isolated
## 1658 5 20 1009 2|14 low Small-Large isolated
## 1659 5 20 1009 2|14 low Small-Large isolated
## 1660 5 20 1009 2|14 low Small-Large isolated
## 1661 5 20 1009 2|14 low Small-Large isolated
## 1662 5 20 1009 2|14 low Small-Large isolated
## 1663 5 20 1009 2|14 low Small-Large isolated
## 1664 5 20 1009 2|14 low Small-Large isolated
## 1665 5 20 1009 2|14 low Small-Large isolated
## 1666 5 20 1009 2|14 low Small-Large isolated
## 1667 5 20 1009 2|14 low Small-Large isolated
## 1668 5 20 1009 2|14 low Small-Large isolated
## 1669 5 20 1009 2|14 low Small-Large isolated
## 1670 5 20 1009 2|14 low Small-Large isolated
## 1671 5 20 1009 2|14 low Small-Large isolated
## 1672 5 20 1009 2|14 low Small-Large isolated
## 1673 5 20 1009 2|14 low Small-Large isolated
## 1674 5 20 1009 2|14 low Small-Large isolated
## 1675 5 20 1009 2|14 low Small-Large isolated
## 1676 5 20 1009 2|14 low Small-Large isolated
## 1677 5 20 1009 2|14 low Small-Large isolated
## 1678 5 20 1009 2|14 low Small-Large isolated
## 1679 5 20 1009 2|14 low Small-Large isolated
## 1680 5 20 1009 2|14 low Small-Large isolated
## 1681 6 24 1009 2|14 low Small-Large isolated
## 1682 6 24 1009 2|14 low Small-Large isolated
## 1683 6 24 1009 2|14 low Small-Large isolated
## 1684 6 24 1009 2|14 low Small-Large isolated
## 1685 6 24 1009 2|14 low Small-Large isolated
## 1686 6 24 1009 2|14 low Small-Large isolated
## 1687 6 24 1009 2|14 low Small-Large isolated
## 1688 6 24 1009 2|14 low Small-Large isolated
## 1689 6 24 1009 2|14 low Small-Large isolated
## 1690 6 24 1009 2|14 low Small-Large isolated
## 1691 6 24 1009 2|14 low Small-Large isolated
## 1692 6 24 1009 2|14 low Small-Large isolated
## 1693 6 24 1009 2|14 low Small-Large isolated
## 1694 6 24 1009 2|14 low Small-Large isolated
## 1695 6 24 1009 2|14 low Small-Large isolated
## 1696 6 24 1009 2|14 low Small-Large isolated
## 1697 6 24 1009 2|14 low Small-Large isolated
## 1698 6 24 1009 2|14 low Small-Large isolated
## 1699 6 24 1009 2|14 low Small-Large isolated
## 1700 6 24 1009 2|14 low Small-Large isolated
## 1701 6 24 1009 2|14 low Small-Large isolated
## 1702 6 24 1009 2|14 low Small-Large isolated
## 1703 6 24 1009 2|14 low Small-Large isolated
## 1704 6 24 1009 2|14 low Small-Large isolated
## 1705 7 28 1009 2|14 low Small-Large isolated
## 1706 7 28 1009 2|14 low Small-Large isolated
## 1707 7 28 1009 2|14 low Small-Large isolated
## 1708 7 28 1009 2|14 low Small-Large isolated
## 1709 7 28 1009 2|14 low Small-Large isolated
## 1710 7 28 1009 2|14 low Small-Large isolated
## 1711 7 28 1009 2|14 low Small-Large isolated
## 1712 7 28 1009 2|14 low Small-Large isolated
## 1713 7 28 1009 2|14 low Small-Large isolated
## 1714 7 28 1009 2|14 low Small-Large isolated
## 1715 7 28 1009 2|14 low Small-Large isolated
## 1716 7 28 1009 2|14 low Small-Large isolated
## 1717 7 28 1009 2|14 low Small-Large isolated
## 1718 7 28 1009 2|14 low Small-Large isolated
## 1719 7 28 1009 2|14 low Small-Large isolated
## 1720 7 28 1009 2|14 low Small-Large isolated
## 1721 7 28 1009 2|14 low Small-Large isolated
## 1722 7 28 1009 2|14 low Small-Large isolated
## 1723 7 28 1009 2|14 low Small-Large isolated
## 1724 7 28 1009 2|14 low Small-Large isolated
## 1725 7 28 1009 2|14 low Small-Large isolated
## 1726 7 28 1009 2|14 low Small-Large isolated
## 1727 7 28 1009 2|14 low Small-Large isolated
## 1728 7 28 1009 2|14 low Small-Large isolated
## 1729 0 0 1010 2|15 low Small-Large isolated
## 1730 0 0 1010 2|15 low Small-Large isolated
## 1731 0 0 1010 2|15 low Small-Large isolated
## 1732 0 0 1010 2|15 low Small-Large isolated
## 1733 0 0 1010 2|15 low Small-Large isolated
## 1734 0 0 1010 2|15 low Small-Large isolated
## 1735 0 0 1010 2|15 low Small-Large isolated
## 1736 0 0 1010 2|15 low Small-Large isolated
## 1737 0 0 1010 2|15 low Small-Large isolated
## 1738 0 0 1010 2|15 low Small-Large isolated
## 1739 0 0 1010 2|15 low Small-Large isolated
## 1740 0 0 1010 2|15 low Small-Large isolated
## 1741 0 0 1010 2|15 low Small-Large isolated
## 1742 0 0 1010 2|15 low Small-Large isolated
## 1743 0 0 1010 2|15 low Small-Large isolated
## 1744 0 0 1010 2|15 low Small-Large isolated
## 1745 0 0 1010 2|15 low Small-Large isolated
## 1746 0 0 1010 2|15 low Small-Large isolated
## 1747 0 0 1010 2|15 low Small-Large isolated
## 1748 0 0 1010 2|15 low Small-Large isolated
## 1749 0 0 1010 2|15 low Small-Large isolated
## 1750 0 0 1010 2|15 low Small-Large isolated
## 1751 0 0 1010 2|15 low Small-Large isolated
## 1752 0 0 1010 2|15 low Small-Large isolated
## 1753 1 4 1010 2|15 low Small-Large isolated
## 1754 1 4 1010 2|15 low Small-Large isolated
## 1755 1 4 1010 2|15 low Small-Large isolated
## 1756 1 4 1010 2|15 low Small-Large isolated
## 1757 1 4 1010 2|15 low Small-Large isolated
## 1758 1 4 1010 2|15 low Small-Large isolated
## 1759 1 4 1010 2|15 low Small-Large isolated
## 1760 1 4 1010 2|15 low Small-Large isolated
## 1761 1 4 1010 2|15 low Small-Large isolated
## 1762 1 4 1010 2|15 low Small-Large isolated
## 1763 1 4 1010 2|15 low Small-Large isolated
## 1764 1 4 1010 2|15 low Small-Large isolated
## 1765 1 4 1010 2|15 low Small-Large isolated
## 1766 1 4 1010 2|15 low Small-Large isolated
## 1767 1 4 1010 2|15 low Small-Large isolated
## 1768 1 4 1010 2|15 low Small-Large isolated
## 1769 1 4 1010 2|15 low Small-Large isolated
## 1770 1 4 1010 2|15 low Small-Large isolated
## 1771 1 4 1010 2|15 low Small-Large isolated
## 1772 1 4 1010 2|15 low Small-Large isolated
## 1773 1 4 1010 2|15 low Small-Large isolated
## 1774 1 4 1010 2|15 low Small-Large isolated
## 1775 1 4 1010 2|15 low Small-Large isolated
## 1776 1 4 1010 2|15 low Small-Large isolated
## 1777 2 8 1010 2|15 low Small-Large isolated
## 1778 2 8 1010 2|15 low Small-Large isolated
## 1779 2 8 1010 2|15 low Small-Large isolated
## 1780 2 8 1010 2|15 low Small-Large isolated
## 1781 2 8 1010 2|15 low Small-Large isolated
## 1782 2 8 1010 2|15 low Small-Large isolated
## 1783 2 8 1010 2|15 low Small-Large isolated
## 1784 2 8 1010 2|15 low Small-Large isolated
## 1785 2 8 1010 2|15 low Small-Large isolated
## 1786 2 8 1010 2|15 low Small-Large isolated
## 1787 2 8 1010 2|15 low Small-Large isolated
## 1788 2 8 1010 2|15 low Small-Large isolated
## 1789 2 8 1010 2|15 low Small-Large isolated
## 1790 2 8 1010 2|15 low Small-Large isolated
## 1791 2 8 1010 2|15 low Small-Large isolated
## 1792 2 8 1010 2|15 low Small-Large isolated
## 1793 2 8 1010 2|15 low Small-Large isolated
## 1794 2 8 1010 2|15 low Small-Large isolated
## 1795 2 8 1010 2|15 low Small-Large isolated
## 1796 2 8 1010 2|15 low Small-Large isolated
## 1797 2 8 1010 2|15 low Small-Large isolated
## 1798 2 8 1010 2|15 low Small-Large isolated
## 1799 2 8 1010 2|15 low Small-Large isolated
## 1800 2 8 1010 2|15 low Small-Large isolated
## 1801 3 12 1010 2|15 low Small-Large isolated
## 1802 3 12 1010 2|15 low Small-Large isolated
## 1803 3 12 1010 2|15 low Small-Large isolated
## 1804 3 12 1010 2|15 low Small-Large isolated
## 1805 3 12 1010 2|15 low Small-Large isolated
## 1806 3 12 1010 2|15 low Small-Large isolated
## 1807 3 12 1010 2|15 low Small-Large isolated
## 1808 3 12 1010 2|15 low Small-Large isolated
## 1809 3 12 1010 2|15 low Small-Large isolated
## 1810 3 12 1010 2|15 low Small-Large isolated
## 1811 3 12 1010 2|15 low Small-Large isolated
## 1812 3 12 1010 2|15 low Small-Large isolated
## 1813 3 12 1010 2|15 low Small-Large isolated
## 1814 3 12 1010 2|15 low Small-Large isolated
## 1815 3 12 1010 2|15 low Small-Large isolated
## 1816 3 12 1010 2|15 low Small-Large isolated
## 1817 3 12 1010 2|15 low Small-Large isolated
## 1818 3 12 1010 2|15 low Small-Large isolated
## 1819 3 12 1010 2|15 low Small-Large isolated
## 1820 3 12 1010 2|15 low Small-Large isolated
## 1821 3 12 1010 2|15 low Small-Large isolated
## 1822 3 12 1010 2|15 low Small-Large isolated
## 1823 3 12 1010 2|15 low Small-Large isolated
## 1824 3 12 1010 2|15 low Small-Large isolated
## 1825 4 16 1010 2|15 low Small-Large isolated
## 1826 4 16 1010 2|15 low Small-Large isolated
## 1827 4 16 1010 2|15 low Small-Large isolated
## 1828 4 16 1010 2|15 low Small-Large isolated
## 1829 4 16 1010 2|15 low Small-Large isolated
## 1830 4 16 1010 2|15 low Small-Large isolated
## 1831 4 16 1010 2|15 low Small-Large isolated
## 1832 4 16 1010 2|15 low Small-Large isolated
## 1833 4 16 1010 2|15 low Small-Large isolated
## 1834 4 16 1010 2|15 low Small-Large isolated
## 1835 4 16 1010 2|15 low Small-Large isolated
## 1836 4 16 1010 2|15 low Small-Large isolated
## 1837 4 16 1010 2|15 low Small-Large isolated
## 1838 4 16 1010 2|15 low Small-Large isolated
## 1839 4 16 1010 2|15 low Small-Large isolated
## 1840 4 16 1010 2|15 low Small-Large isolated
## 1841 4 16 1010 2|15 low Small-Large isolated
## 1842 4 16 1010 2|15 low Small-Large isolated
## 1843 4 16 1010 2|15 low Small-Large isolated
## 1844 4 16 1010 2|15 low Small-Large isolated
## 1845 4 16 1010 2|15 low Small-Large isolated
## 1846 4 16 1010 2|15 low Small-Large isolated
## 1847 4 16 1010 2|15 low Small-Large isolated
## 1848 4 16 1010 2|15 low Small-Large isolated
## 1849 5 20 1010 2|15 low Small-Large isolated
## 1850 5 20 1010 2|15 low Small-Large isolated
## 1851 5 20 1010 2|15 low Small-Large isolated
## 1852 5 20 1010 2|15 low Small-Large isolated
## 1853 5 20 1010 2|15 low Small-Large isolated
## 1854 5 20 1010 2|15 low Small-Large isolated
## 1855 5 20 1010 2|15 low Small-Large isolated
## 1856 5 20 1010 2|15 low Small-Large isolated
## 1857 5 20 1010 2|15 low Small-Large isolated
## 1858 5 20 1010 2|15 low Small-Large isolated
## 1859 5 20 1010 2|15 low Small-Large isolated
## 1860 5 20 1010 2|15 low Small-Large isolated
## 1861 5 20 1010 2|15 low Small-Large isolated
## 1862 5 20 1010 2|15 low Small-Large isolated
## 1863 5 20 1010 2|15 low Small-Large isolated
## 1864 5 20 1010 2|15 low Small-Large isolated
## 1865 5 20 1010 2|15 low Small-Large isolated
## 1866 5 20 1010 2|15 low Small-Large isolated
## 1867 5 20 1010 2|15 low Small-Large isolated
## 1868 5 20 1010 2|15 low Small-Large isolated
## 1869 5 20 1010 2|15 low Small-Large isolated
## 1870 5 20 1010 2|15 low Small-Large isolated
## 1871 5 20 1010 2|15 low Small-Large isolated
## 1872 5 20 1010 2|15 low Small-Large isolated
## 1873 6 24 1010 2|15 low Small-Large isolated
## 1874 6 24 1010 2|15 low Small-Large isolated
## 1875 6 24 1010 2|15 low Small-Large isolated
## 1876 6 24 1010 2|15 low Small-Large isolated
## 1877 6 24 1010 2|15 low Small-Large isolated
## 1878 6 24 1010 2|15 low Small-Large isolated
## 1879 6 24 1010 2|15 low Small-Large isolated
## 1880 6 24 1010 2|15 low Small-Large isolated
## 1881 6 24 1010 2|15 low Small-Large isolated
## 1882 6 24 1010 2|15 low Small-Large isolated
## 1883 6 24 1010 2|15 low Small-Large isolated
## 1884 6 24 1010 2|15 low Small-Large isolated
## 1885 6 24 1010 2|15 low Small-Large isolated
## 1886 6 24 1010 2|15 low Small-Large isolated
## 1887 6 24 1010 2|15 low Small-Large isolated
## 1888 6 24 1010 2|15 low Small-Large isolated
## 1889 6 24 1010 2|15 low Small-Large isolated
## 1890 6 24 1010 2|15 low Small-Large isolated
## 1891 6 24 1010 2|15 low Small-Large isolated
## 1892 6 24 1010 2|15 low Small-Large isolated
## 1893 6 24 1010 2|15 low Small-Large isolated
## 1894 6 24 1010 2|15 low Small-Large isolated
## 1895 6 24 1010 2|15 low Small-Large isolated
## 1896 6 24 1010 2|15 low Small-Large isolated
## 1897 7 28 1010 2|15 low Small-Large isolated
## 1898 7 28 1010 2|15 low Small-Large isolated
## 1899 7 28 1010 2|15 low Small-Large isolated
## 1900 7 28 1010 2|15 low Small-Large isolated
## 1901 7 28 1010 2|15 low Small-Large isolated
## 1902 7 28 1010 2|15 low Small-Large isolated
## 1903 7 28 1010 2|15 low Small-Large isolated
## 1904 7 28 1010 2|15 low Small-Large isolated
## 1905 7 28 1010 2|15 low Small-Large isolated
## 1906 7 28 1010 2|15 low Small-Large isolated
## 1907 7 28 1010 2|15 low Small-Large isolated
## 1908 7 28 1010 2|15 low Small-Large isolated
## 1909 7 28 1010 2|15 low Small-Large isolated
## 1910 7 28 1010 2|15 low Small-Large isolated
## 1911 7 28 1010 2|15 low Small-Large isolated
## 1912 7 28 1010 2|15 low Small-Large isolated
## 1913 7 28 1010 2|15 low Small-Large isolated
## 1914 7 28 1010 2|15 low Small-Large isolated
## 1915 7 28 1010 2|15 low Small-Large isolated
## 1916 7 28 1010 2|15 low Small-Large isolated
## 1917 7 28 1010 2|15 low Small-Large isolated
## 1918 7 28 1010 2|15 low Small-Large isolated
## 1919 7 28 1010 2|15 low Small-Large isolated
## 1920 7 28 1010 2|15 low Small-Large isolated
## 1921 0 0 1011 3|11 low Small-Large isolated
## 1922 0 0 1011 3|11 low Small-Large isolated
## 1923 0 0 1011 3|11 low Small-Large isolated
## 1924 0 0 1011 3|11 low Small-Large isolated
## 1925 0 0 1011 3|11 low Small-Large isolated
## 1926 0 0 1011 3|11 low Small-Large isolated
## 1927 0 0 1011 3|11 low Small-Large isolated
## 1928 0 0 1011 3|11 low Small-Large isolated
## 1929 0 0 1011 3|11 low Small-Large isolated
## 1930 0 0 1011 3|11 low Small-Large isolated
## 1931 0 0 1011 3|11 low Small-Large isolated
## 1932 0 0 1011 3|11 low Small-Large isolated
## 1933 0 0 1011 3|11 low Small-Large isolated
## 1934 0 0 1011 3|11 low Small-Large isolated
## 1935 0 0 1011 3|11 low Small-Large isolated
## 1936 0 0 1011 3|11 low Small-Large isolated
## 1937 0 0 1011 3|11 low Small-Large isolated
## 1938 0 0 1011 3|11 low Small-Large isolated
## 1939 0 0 1011 3|11 low Small-Large isolated
## 1940 0 0 1011 3|11 low Small-Large isolated
## 1941 0 0 1011 3|11 low Small-Large isolated
## 1942 0 0 1011 3|11 low Small-Large isolated
## 1943 0 0 1011 3|11 low Small-Large isolated
## 1944 0 0 1011 3|11 low Small-Large isolated
## 1945 1 4 1011 3|11 low Small-Large isolated
## 1946 1 4 1011 3|11 low Small-Large isolated
## 1947 1 4 1011 3|11 low Small-Large isolated
## 1948 1 4 1011 3|11 low Small-Large isolated
## 1949 1 4 1011 3|11 low Small-Large isolated
## 1950 1 4 1011 3|11 low Small-Large isolated
## 1951 1 4 1011 3|11 low Small-Large isolated
## 1952 1 4 1011 3|11 low Small-Large isolated
## 1953 1 4 1011 3|11 low Small-Large isolated
## 1954 1 4 1011 3|11 low Small-Large isolated
## 1955 1 4 1011 3|11 low Small-Large isolated
## 1956 1 4 1011 3|11 low Small-Large isolated
## 1957 1 4 1011 3|11 low Small-Large isolated
## 1958 1 4 1011 3|11 low Small-Large isolated
## 1959 1 4 1011 3|11 low Small-Large isolated
## 1960 1 4 1011 3|11 low Small-Large isolated
## 1961 1 4 1011 3|11 low Small-Large isolated
## 1962 1 4 1011 3|11 low Small-Large isolated
## 1963 1 4 1011 3|11 low Small-Large isolated
## 1964 1 4 1011 3|11 low Small-Large isolated
## 1965 1 4 1011 3|11 low Small-Large isolated
## 1966 1 4 1011 3|11 low Small-Large isolated
## 1967 1 4 1011 3|11 low Small-Large isolated
## 1968 1 4 1011 3|11 low Small-Large isolated
## 1969 2 8 1011 3|11 low Small-Large isolated
## 1970 2 8 1011 3|11 low Small-Large isolated
## 1971 2 8 1011 3|11 low Small-Large isolated
## 1972 2 8 1011 3|11 low Small-Large isolated
## 1973 2 8 1011 3|11 low Small-Large isolated
## 1974 2 8 1011 3|11 low Small-Large isolated
## 1975 2 8 1011 3|11 low Small-Large isolated
## 1976 2 8 1011 3|11 low Small-Large isolated
## 1977 2 8 1011 3|11 low Small-Large isolated
## 1978 2 8 1011 3|11 low Small-Large isolated
## 1979 2 8 1011 3|11 low Small-Large isolated
## 1980 2 8 1011 3|11 low Small-Large isolated
## 1981 2 8 1011 3|11 low Small-Large isolated
## 1982 2 8 1011 3|11 low Small-Large isolated
## 1983 2 8 1011 3|11 low Small-Large isolated
## 1984 2 8 1011 3|11 low Small-Large isolated
## 1985 2 8 1011 3|11 low Small-Large isolated
## 1986 2 8 1011 3|11 low Small-Large isolated
## 1987 2 8 1011 3|11 low Small-Large isolated
## 1988 2 8 1011 3|11 low Small-Large isolated
## 1989 2 8 1011 3|11 low Small-Large isolated
## 1990 2 8 1011 3|11 low Small-Large isolated
## 1991 2 8 1011 3|11 low Small-Large isolated
## 1992 2 8 1011 3|11 low Small-Large isolated
## 1993 3 12 1011 3|11 low Small-Large isolated
## 1994 3 12 1011 3|11 low Small-Large isolated
## 1995 3 12 1011 3|11 low Small-Large isolated
## 1996 3 12 1011 3|11 low Small-Large isolated
## 1997 3 12 1011 3|11 low Small-Large isolated
## 1998 3 12 1011 3|11 low Small-Large isolated
## 1999 3 12 1011 3|11 low Small-Large isolated
## 2000 3 12 1011 3|11 low Small-Large isolated
## 2001 3 12 1011 3|11 low Small-Large isolated
## 2002 3 12 1011 3|11 low Small-Large isolated
## 2003 3 12 1011 3|11 low Small-Large isolated
## 2004 3 12 1011 3|11 low Small-Large isolated
## 2005 3 12 1011 3|11 low Small-Large isolated
## 2006 3 12 1011 3|11 low Small-Large isolated
## 2007 3 12 1011 3|11 low Small-Large isolated
## 2008 3 12 1011 3|11 low Small-Large isolated
## 2009 3 12 1011 3|11 low Small-Large isolated
## 2010 3 12 1011 3|11 low Small-Large isolated
## 2011 3 12 1011 3|11 low Small-Large isolated
## 2012 3 12 1011 3|11 low Small-Large isolated
## 2013 3 12 1011 3|11 low Small-Large isolated
## 2014 3 12 1011 3|11 low Small-Large isolated
## 2015 3 12 1011 3|11 low Small-Large isolated
## 2016 3 12 1011 3|11 low Small-Large isolated
## 2017 4 16 1011 3|11 low Small-Large isolated
## 2018 4 16 1011 3|11 low Small-Large isolated
## 2019 4 16 1011 3|11 low Small-Large isolated
## 2020 4 16 1011 3|11 low Small-Large isolated
## 2021 4 16 1011 3|11 low Small-Large isolated
## 2022 4 16 1011 3|11 low Small-Large isolated
## 2023 4 16 1011 3|11 low Small-Large isolated
## 2024 4 16 1011 3|11 low Small-Large isolated
## 2025 4 16 1011 3|11 low Small-Large isolated
## 2026 4 16 1011 3|11 low Small-Large isolated
## 2027 4 16 1011 3|11 low Small-Large isolated
## 2028 4 16 1011 3|11 low Small-Large isolated
## 2029 4 16 1011 3|11 low Small-Large isolated
## 2030 4 16 1011 3|11 low Small-Large isolated
## 2031 4 16 1011 3|11 low Small-Large isolated
## 2032 4 16 1011 3|11 low Small-Large isolated
## 2033 4 16 1011 3|11 low Small-Large isolated
## 2034 4 16 1011 3|11 low Small-Large isolated
## 2035 4 16 1011 3|11 low Small-Large isolated
## 2036 4 16 1011 3|11 low Small-Large isolated
## 2037 4 16 1011 3|11 low Small-Large isolated
## 2038 4 16 1011 3|11 low Small-Large isolated
## 2039 4 16 1011 3|11 low Small-Large isolated
## 2040 4 16 1011 3|11 low Small-Large isolated
## 2041 5 20 1011 3|11 low Small-Large isolated
## 2042 5 20 1011 3|11 low Small-Large isolated
## 2043 5 20 1011 3|11 low Small-Large isolated
## 2044 5 20 1011 3|11 low Small-Large isolated
## 2045 5 20 1011 3|11 low Small-Large isolated
## 2046 5 20 1011 3|11 low Small-Large isolated
## 2047 5 20 1011 3|11 low Small-Large isolated
## 2048 5 20 1011 3|11 low Small-Large isolated
## 2049 5 20 1011 3|11 low Small-Large isolated
## 2050 5 20 1011 3|11 low Small-Large isolated
## 2051 5 20 1011 3|11 low Small-Large isolated
## 2052 5 20 1011 3|11 low Small-Large isolated
## 2053 5 20 1011 3|11 low Small-Large isolated
## 2054 5 20 1011 3|11 low Small-Large isolated
## 2055 5 20 1011 3|11 low Small-Large isolated
## 2056 5 20 1011 3|11 low Small-Large isolated
## 2057 5 20 1011 3|11 low Small-Large isolated
## 2058 5 20 1011 3|11 low Small-Large isolated
## 2059 5 20 1011 3|11 low Small-Large isolated
## 2060 5 20 1011 3|11 low Small-Large isolated
## 2061 5 20 1011 3|11 low Small-Large isolated
## 2062 5 20 1011 3|11 low Small-Large isolated
## 2063 5 20 1011 3|11 low Small-Large isolated
## 2064 5 20 1011 3|11 low Small-Large isolated
## 2065 6 24 1011 3|11 low Small-Large isolated
## 2066 6 24 1011 3|11 low Small-Large isolated
## 2067 6 24 1011 3|11 low Small-Large isolated
## 2068 6 24 1011 3|11 low Small-Large isolated
## 2069 6 24 1011 3|11 low Small-Large isolated
## 2070 6 24 1011 3|11 low Small-Large isolated
## 2071 6 24 1011 3|11 low Small-Large isolated
## 2072 6 24 1011 3|11 low Small-Large isolated
## 2073 6 24 1011 3|11 low Small-Large isolated
## 2074 6 24 1011 3|11 low Small-Large isolated
## 2075 6 24 1011 3|11 low Small-Large isolated
## 2076 6 24 1011 3|11 low Small-Large isolated
## 2077 6 24 1011 3|11 low Small-Large isolated
## 2078 6 24 1011 3|11 low Small-Large isolated
## 2079 6 24 1011 3|11 low Small-Large isolated
## 2080 6 24 1011 3|11 low Small-Large isolated
## 2081 6 24 1011 3|11 low Small-Large isolated
## 2082 6 24 1011 3|11 low Small-Large isolated
## 2083 6 24 1011 3|11 low Small-Large isolated
## 2084 6 24 1011 3|11 low Small-Large isolated
## 2085 6 24 1011 3|11 low Small-Large isolated
## 2086 6 24 1011 3|11 low Small-Large isolated
## 2087 6 24 1011 3|11 low Small-Large isolated
## 2088 6 24 1011 3|11 low Small-Large isolated
## 2089 7 28 1011 3|11 low Small-Large isolated
## 2090 7 28 1011 3|11 low Small-Large isolated
## 2091 7 28 1011 3|11 low Small-Large isolated
## 2092 7 28 1011 3|11 low Small-Large isolated
## 2093 7 28 1011 3|11 low Small-Large isolated
## 2094 7 28 1011 3|11 low Small-Large isolated
## 2095 7 28 1011 3|11 low Small-Large isolated
## 2096 7 28 1011 3|11 low Small-Large isolated
## 2097 7 28 1011 3|11 low Small-Large isolated
## 2098 7 28 1011 3|11 low Small-Large isolated
## 2099 7 28 1011 3|11 low Small-Large isolated
## 2100 7 28 1011 3|11 low Small-Large isolated
## 2101 7 28 1011 3|11 low Small-Large isolated
## 2102 7 28 1011 3|11 low Small-Large isolated
## 2103 7 28 1011 3|11 low Small-Large isolated
## 2104 7 28 1011 3|11 low Small-Large isolated
## 2105 7 28 1011 3|11 low Small-Large isolated
## 2106 7 28 1011 3|11 low Small-Large isolated
## 2107 7 28 1011 3|11 low Small-Large isolated
## 2108 7 28 1011 3|11 low Small-Large isolated
## 2109 7 28 1011 3|11 low Small-Large isolated
## 2110 7 28 1011 3|11 low Small-Large isolated
## 2111 7 28 1011 3|11 low Small-Large isolated
## 2112 7 28 1011 3|11 low Small-Large isolated
## 2113 0 0 1012 3|12 low Small-Large isolated
## 2114 0 0 1012 3|12 low Small-Large isolated
## 2115 0 0 1012 3|12 low Small-Large isolated
## 2116 0 0 1012 3|12 low Small-Large isolated
## 2117 0 0 1012 3|12 low Small-Large isolated
## 2118 0 0 1012 3|12 low Small-Large isolated
## 2119 0 0 1012 3|12 low Small-Large isolated
## 2120 0 0 1012 3|12 low Small-Large isolated
## 2121 0 0 1012 3|12 low Small-Large isolated
## 2122 0 0 1012 3|12 low Small-Large isolated
## 2123 0 0 1012 3|12 low Small-Large isolated
## 2124 0 0 1012 3|12 low Small-Large isolated
## 2125 0 0 1012 3|12 low Small-Large isolated
## 2126 0 0 1012 3|12 low Small-Large isolated
## 2127 0 0 1012 3|12 low Small-Large isolated
## 2128 0 0 1012 3|12 low Small-Large isolated
## 2129 0 0 1012 3|12 low Small-Large isolated
## 2130 0 0 1012 3|12 low Small-Large isolated
## 2131 0 0 1012 3|12 low Small-Large isolated
## 2132 0 0 1012 3|12 low Small-Large isolated
## 2133 0 0 1012 3|12 low Small-Large isolated
## 2134 0 0 1012 3|12 low Small-Large isolated
## 2135 0 0 1012 3|12 low Small-Large isolated
## 2136 0 0 1012 3|12 low Small-Large isolated
## 2137 1 4 1012 3|12 low Small-Large isolated
## 2138 1 4 1012 3|12 low Small-Large isolated
## 2139 1 4 1012 3|12 low Small-Large isolated
## 2140 1 4 1012 3|12 low Small-Large isolated
## 2141 1 4 1012 3|12 low Small-Large isolated
## 2142 1 4 1012 3|12 low Small-Large isolated
## 2143 1 4 1012 3|12 low Small-Large isolated
## 2144 1 4 1012 3|12 low Small-Large isolated
## 2145 1 4 1012 3|12 low Small-Large isolated
## 2146 1 4 1012 3|12 low Small-Large isolated
## 2147 1 4 1012 3|12 low Small-Large isolated
## 2148 1 4 1012 3|12 low Small-Large isolated
## 2149 1 4 1012 3|12 low Small-Large isolated
## 2150 1 4 1012 3|12 low Small-Large isolated
## 2151 1 4 1012 3|12 low Small-Large isolated
## 2152 1 4 1012 3|12 low Small-Large isolated
## 2153 1 4 1012 3|12 low Small-Large isolated
## 2154 1 4 1012 3|12 low Small-Large isolated
## 2155 1 4 1012 3|12 low Small-Large isolated
## 2156 1 4 1012 3|12 low Small-Large isolated
## 2157 1 4 1012 3|12 low Small-Large isolated
## 2158 1 4 1012 3|12 low Small-Large isolated
## 2159 1 4 1012 3|12 low Small-Large isolated
## 2160 1 4 1012 3|12 low Small-Large isolated
## 2161 2 8 1012 3|12 low Small-Large isolated
## 2162 2 8 1012 3|12 low Small-Large isolated
## 2163 2 8 1012 3|12 low Small-Large isolated
## 2164 2 8 1012 3|12 low Small-Large isolated
## 2165 2 8 1012 3|12 low Small-Large isolated
## 2166 2 8 1012 3|12 low Small-Large isolated
## 2167 2 8 1012 3|12 low Small-Large isolated
## 2168 2 8 1012 3|12 low Small-Large isolated
## 2169 2 8 1012 3|12 low Small-Large isolated
## 2170 2 8 1012 3|12 low Small-Large isolated
## 2171 2 8 1012 3|12 low Small-Large isolated
## 2172 2 8 1012 3|12 low Small-Large isolated
## 2173 2 8 1012 3|12 low Small-Large isolated
## 2174 2 8 1012 3|12 low Small-Large isolated
## 2175 2 8 1012 3|12 low Small-Large isolated
## 2176 2 8 1012 3|12 low Small-Large isolated
## 2177 2 8 1012 3|12 low Small-Large isolated
## 2178 2 8 1012 3|12 low Small-Large isolated
## 2179 2 8 1012 3|12 low Small-Large isolated
## 2180 2 8 1012 3|12 low Small-Large isolated
## 2181 2 8 1012 3|12 low Small-Large isolated
## 2182 2 8 1012 3|12 low Small-Large isolated
## 2183 2 8 1012 3|12 low Small-Large isolated
## 2184 2 8 1012 3|12 low Small-Large isolated
## 2185 3 12 1012 3|12 low Small-Large isolated
## 2186 3 12 1012 3|12 low Small-Large isolated
## 2187 3 12 1012 3|12 low Small-Large isolated
## 2188 3 12 1012 3|12 low Small-Large isolated
## 2189 3 12 1012 3|12 low Small-Large isolated
## 2190 3 12 1012 3|12 low Small-Large isolated
## 2191 3 12 1012 3|12 low Small-Large isolated
## 2192 3 12 1012 3|12 low Small-Large isolated
## 2193 3 12 1012 3|12 low Small-Large isolated
## 2194 3 12 1012 3|12 low Small-Large isolated
## 2195 3 12 1012 3|12 low Small-Large isolated
## 2196 3 12 1012 3|12 low Small-Large isolated
## 2197 3 12 1012 3|12 low Small-Large isolated
## 2198 3 12 1012 3|12 low Small-Large isolated
## 2199 3 12 1012 3|12 low Small-Large isolated
## 2200 3 12 1012 3|12 low Small-Large isolated
## 2201 3 12 1012 3|12 low Small-Large isolated
## 2202 3 12 1012 3|12 low Small-Large isolated
## 2203 3 12 1012 3|12 low Small-Large isolated
## 2204 3 12 1012 3|12 low Small-Large isolated
## 2205 3 12 1012 3|12 low Small-Large isolated
## 2206 3 12 1012 3|12 low Small-Large isolated
## 2207 3 12 1012 3|12 low Small-Large isolated
## 2208 3 12 1012 3|12 low Small-Large isolated
## 2209 4 16 1012 3|12 low Small-Large isolated
## 2210 4 16 1012 3|12 low Small-Large isolated
## 2211 4 16 1012 3|12 low Small-Large isolated
## 2212 4 16 1012 3|12 low Small-Large isolated
## 2213 4 16 1012 3|12 low Small-Large isolated
## 2214 4 16 1012 3|12 low Small-Large isolated
## 2215 4 16 1012 3|12 low Small-Large isolated
## 2216 4 16 1012 3|12 low Small-Large isolated
## 2217 4 16 1012 3|12 low Small-Large isolated
## 2218 4 16 1012 3|12 low Small-Large isolated
## 2219 4 16 1012 3|12 low Small-Large isolated
## 2220 4 16 1012 3|12 low Small-Large isolated
## 2221 4 16 1012 3|12 low Small-Large isolated
## 2222 4 16 1012 3|12 low Small-Large isolated
## 2223 4 16 1012 3|12 low Small-Large isolated
## 2224 4 16 1012 3|12 low Small-Large isolated
## 2225 4 16 1012 3|12 low Small-Large isolated
## 2226 4 16 1012 3|12 low Small-Large isolated
## 2227 4 16 1012 3|12 low Small-Large isolated
## 2228 4 16 1012 3|12 low Small-Large isolated
## 2229 4 16 1012 3|12 low Small-Large isolated
## 2230 4 16 1012 3|12 low Small-Large isolated
## 2231 4 16 1012 3|12 low Small-Large isolated
## 2232 4 16 1012 3|12 low Small-Large isolated
## 2233 5 20 1012 3|12 low Small-Large isolated
## 2234 5 20 1012 3|12 low Small-Large isolated
## 2235 5 20 1012 3|12 low Small-Large isolated
## 2236 5 20 1012 3|12 low Small-Large isolated
## 2237 5 20 1012 3|12 low Small-Large isolated
## 2238 5 20 1012 3|12 low Small-Large isolated
## 2239 5 20 1012 3|12 low Small-Large isolated
## 2240 5 20 1012 3|12 low Small-Large isolated
## 2241 5 20 1012 3|12 low Small-Large isolated
## 2242 5 20 1012 3|12 low Small-Large isolated
## 2243 5 20 1012 3|12 low Small-Large isolated
## 2244 5 20 1012 3|12 low Small-Large isolated
## 2245 5 20 1012 3|12 low Small-Large isolated
## 2246 5 20 1012 3|12 low Small-Large isolated
## 2247 5 20 1012 3|12 low Small-Large isolated
## 2248 5 20 1012 3|12 low Small-Large isolated
## 2249 5 20 1012 3|12 low Small-Large isolated
## 2250 5 20 1012 3|12 low Small-Large isolated
## 2251 5 20 1012 3|12 low Small-Large isolated
## 2252 5 20 1012 3|12 low Small-Large isolated
## 2253 5 20 1012 3|12 low Small-Large isolated
## 2254 5 20 1012 3|12 low Small-Large isolated
## 2255 5 20 1012 3|12 low Small-Large isolated
## 2256 5 20 1012 3|12 low Small-Large isolated
## 2257 6 24 1012 3|12 low Small-Large isolated
## 2258 6 24 1012 3|12 low Small-Large isolated
## 2259 6 24 1012 3|12 low Small-Large isolated
## 2260 6 24 1012 3|12 low Small-Large isolated
## 2261 6 24 1012 3|12 low Small-Large isolated
## 2262 6 24 1012 3|12 low Small-Large isolated
## 2263 6 24 1012 3|12 low Small-Large isolated
## 2264 6 24 1012 3|12 low Small-Large isolated
## 2265 6 24 1012 3|12 low Small-Large isolated
## 2266 6 24 1012 3|12 low Small-Large isolated
## 2267 6 24 1012 3|12 low Small-Large isolated
## 2268 6 24 1012 3|12 low Small-Large isolated
## 2269 6 24 1012 3|12 low Small-Large isolated
## 2270 6 24 1012 3|12 low Small-Large isolated
## 2271 6 24 1012 3|12 low Small-Large isolated
## 2272 6 24 1012 3|12 low Small-Large isolated
## 2273 6 24 1012 3|12 low Small-Large isolated
## 2274 6 24 1012 3|12 low Small-Large isolated
## 2275 6 24 1012 3|12 low Small-Large isolated
## 2276 6 24 1012 3|12 low Small-Large isolated
## 2277 6 24 1012 3|12 low Small-Large isolated
## 2278 6 24 1012 3|12 low Small-Large isolated
## 2279 6 24 1012 3|12 low Small-Large isolated
## 2280 6 24 1012 3|12 low Small-Large isolated
## 2281 7 28 1012 3|12 low Small-Large isolated
## 2282 7 28 1012 3|12 low Small-Large isolated
## 2283 7 28 1012 3|12 low Small-Large isolated
## 2284 7 28 1012 3|12 low Small-Large isolated
## 2285 7 28 1012 3|12 low Small-Large isolated
## 2286 7 28 1012 3|12 low Small-Large isolated
## 2287 7 28 1012 3|12 low Small-Large isolated
## 2288 7 28 1012 3|12 low Small-Large isolated
## 2289 7 28 1012 3|12 low Small-Large isolated
## 2290 7 28 1012 3|12 low Small-Large isolated
## 2291 7 28 1012 3|12 low Small-Large isolated
## 2292 7 28 1012 3|12 low Small-Large isolated
## 2293 7 28 1012 3|12 low Small-Large isolated
## 2294 7 28 1012 3|12 low Small-Large isolated
## 2295 7 28 1012 3|12 low Small-Large isolated
## 2296 7 28 1012 3|12 low Small-Large isolated
## 2297 7 28 1012 3|12 low Small-Large isolated
## 2298 7 28 1012 3|12 low Small-Large isolated
## 2299 7 28 1012 3|12 low Small-Large isolated
## 2300 7 28 1012 3|12 low Small-Large isolated
## 2301 7 28 1012 3|12 low Small-Large isolated
## 2302 7 28 1012 3|12 low Small-Large isolated
## 2303 7 28 1012 3|12 low Small-Large isolated
## 2304 7 28 1012 3|12 low Small-Large isolated
## 2305 0 0 1013 3|13 low Small-Large isolated
## 2306 0 0 1013 3|13 low Small-Large isolated
## 2307 0 0 1013 3|13 low Small-Large isolated
## 2308 0 0 1013 3|13 low Small-Large isolated
## 2309 0 0 1013 3|13 low Small-Large isolated
## 2310 0 0 1013 3|13 low Small-Large isolated
## 2311 0 0 1013 3|13 low Small-Large isolated
## 2312 0 0 1013 3|13 low Small-Large isolated
## 2313 0 0 1013 3|13 low Small-Large isolated
## 2314 0 0 1013 3|13 low Small-Large isolated
## 2315 0 0 1013 3|13 low Small-Large isolated
## 2316 0 0 1013 3|13 low Small-Large isolated
## 2317 0 0 1013 3|13 low Small-Large isolated
## 2318 0 0 1013 3|13 low Small-Large isolated
## 2319 0 0 1013 3|13 low Small-Large isolated
## 2320 0 0 1013 3|13 low Small-Large isolated
## 2321 0 0 1013 3|13 low Small-Large isolated
## 2322 0 0 1013 3|13 low Small-Large isolated
## 2323 0 0 1013 3|13 low Small-Large isolated
## 2324 0 0 1013 3|13 low Small-Large isolated
## 2325 0 0 1013 3|13 low Small-Large isolated
## 2326 0 0 1013 3|13 low Small-Large isolated
## 2327 0 0 1013 3|13 low Small-Large isolated
## 2328 0 0 1013 3|13 low Small-Large isolated
## 2329 1 4 1013 3|13 low Small-Large isolated
## 2330 1 4 1013 3|13 low Small-Large isolated
## 2331 1 4 1013 3|13 low Small-Large isolated
## 2332 1 4 1013 3|13 low Small-Large isolated
## 2333 1 4 1013 3|13 low Small-Large isolated
## 2334 1 4 1013 3|13 low Small-Large isolated
## 2335 1 4 1013 3|13 low Small-Large isolated
## 2336 1 4 1013 3|13 low Small-Large isolated
## 2337 1 4 1013 3|13 low Small-Large isolated
## 2338 1 4 1013 3|13 low Small-Large isolated
## 2339 1 4 1013 3|13 low Small-Large isolated
## 2340 1 4 1013 3|13 low Small-Large isolated
## 2341 1 4 1013 3|13 low Small-Large isolated
## 2342 1 4 1013 3|13 low Small-Large isolated
## 2343 1 4 1013 3|13 low Small-Large isolated
## 2344 1 4 1013 3|13 low Small-Large isolated
## 2345 1 4 1013 3|13 low Small-Large isolated
## 2346 1 4 1013 3|13 low Small-Large isolated
## 2347 1 4 1013 3|13 low Small-Large isolated
## 2348 1 4 1013 3|13 low Small-Large isolated
## 2349 1 4 1013 3|13 low Small-Large isolated
## 2350 1 4 1013 3|13 low Small-Large isolated
## 2351 1 4 1013 3|13 low Small-Large isolated
## 2352 1 4 1013 3|13 low Small-Large isolated
## 2353 2 8 1013 3|13 low Small-Large isolated
## 2354 2 8 1013 3|13 low Small-Large isolated
## 2355 2 8 1013 3|13 low Small-Large isolated
## 2356 2 8 1013 3|13 low Small-Large isolated
## 2357 2 8 1013 3|13 low Small-Large isolated
## 2358 2 8 1013 3|13 low Small-Large isolated
## 2359 2 8 1013 3|13 low Small-Large isolated
## 2360 2 8 1013 3|13 low Small-Large isolated
## 2361 2 8 1013 3|13 low Small-Large isolated
## 2362 2 8 1013 3|13 low Small-Large isolated
## 2363 2 8 1013 3|13 low Small-Large isolated
## 2364 2 8 1013 3|13 low Small-Large isolated
## 2365 2 8 1013 3|13 low Small-Large isolated
## 2366 2 8 1013 3|13 low Small-Large isolated
## 2367 2 8 1013 3|13 low Small-Large isolated
## 2368 2 8 1013 3|13 low Small-Large isolated
## 2369 2 8 1013 3|13 low Small-Large isolated
## 2370 2 8 1013 3|13 low Small-Large isolated
## 2371 2 8 1013 3|13 low Small-Large isolated
## 2372 2 8 1013 3|13 low Small-Large isolated
## 2373 2 8 1013 3|13 low Small-Large isolated
## 2374 2 8 1013 3|13 low Small-Large isolated
## 2375 2 8 1013 3|13 low Small-Large isolated
## 2376 2 8 1013 3|13 low Small-Large isolated
## 2377 3 12 1013 3|13 low Small-Large isolated
## 2378 3 12 1013 3|13 low Small-Large isolated
## 2379 3 12 1013 3|13 low Small-Large isolated
## 2380 3 12 1013 3|13 low Small-Large isolated
## 2381 3 12 1013 3|13 low Small-Large isolated
## 2382 3 12 1013 3|13 low Small-Large isolated
## 2383 3 12 1013 3|13 low Small-Large isolated
## 2384 3 12 1013 3|13 low Small-Large isolated
## 2385 3 12 1013 3|13 low Small-Large isolated
## 2386 3 12 1013 3|13 low Small-Large isolated
## 2387 3 12 1013 3|13 low Small-Large isolated
## 2388 3 12 1013 3|13 low Small-Large isolated
## 2389 3 12 1013 3|13 low Small-Large isolated
## 2390 3 12 1013 3|13 low Small-Large isolated
## 2391 3 12 1013 3|13 low Small-Large isolated
## 2392 3 12 1013 3|13 low Small-Large isolated
## 2393 3 12 1013 3|13 low Small-Large isolated
## 2394 3 12 1013 3|13 low Small-Large isolated
## 2395 3 12 1013 3|13 low Small-Large isolated
## 2396 3 12 1013 3|13 low Small-Large isolated
## 2397 3 12 1013 3|13 low Small-Large isolated
## 2398 3 12 1013 3|13 low Small-Large isolated
## 2399 3 12 1013 3|13 low Small-Large isolated
## 2400 3 12 1013 3|13 low Small-Large isolated
## 2401 4 16 1013 3|13 low Small-Large isolated
## 2402 4 16 1013 3|13 low Small-Large isolated
## 2403 4 16 1013 3|13 low Small-Large isolated
## 2404 4 16 1013 3|13 low Small-Large isolated
## 2405 4 16 1013 3|13 low Small-Large isolated
## 2406 4 16 1013 3|13 low Small-Large isolated
## 2407 4 16 1013 3|13 low Small-Large isolated
## 2408 4 16 1013 3|13 low Small-Large isolated
## 2409 4 16 1013 3|13 low Small-Large isolated
## 2410 4 16 1013 3|13 low Small-Large isolated
## 2411 4 16 1013 3|13 low Small-Large isolated
## 2412 4 16 1013 3|13 low Small-Large isolated
## 2413 4 16 1013 3|13 low Small-Large isolated
## 2414 4 16 1013 3|13 low Small-Large isolated
## 2415 4 16 1013 3|13 low Small-Large isolated
## 2416 4 16 1013 3|13 low Small-Large isolated
## 2417 4 16 1013 3|13 low Small-Large isolated
## 2418 4 16 1013 3|13 low Small-Large isolated
## 2419 4 16 1013 3|13 low Small-Large isolated
## 2420 4 16 1013 3|13 low Small-Large isolated
## 2421 4 16 1013 3|13 low Small-Large isolated
## 2422 4 16 1013 3|13 low Small-Large isolated
## 2423 4 16 1013 3|13 low Small-Large isolated
## 2424 4 16 1013 3|13 low Small-Large isolated
## 2425 5 20 1013 3|13 low Small-Large isolated
## 2426 5 20 1013 3|13 low Small-Large isolated
## 2427 5 20 1013 3|13 low Small-Large isolated
## 2428 5 20 1013 3|13 low Small-Large isolated
## 2429 5 20 1013 3|13 low Small-Large isolated
## 2430 5 20 1013 3|13 low Small-Large isolated
## 2431 5 20 1013 3|13 low Small-Large isolated
## 2432 5 20 1013 3|13 low Small-Large isolated
## 2433 5 20 1013 3|13 low Small-Large isolated
## 2434 5 20 1013 3|13 low Small-Large isolated
## 2435 5 20 1013 3|13 low Small-Large isolated
## 2436 5 20 1013 3|13 low Small-Large isolated
## 2437 5 20 1013 3|13 low Small-Large isolated
## 2438 5 20 1013 3|13 low Small-Large isolated
## 2439 5 20 1013 3|13 low Small-Large isolated
## 2440 5 20 1013 3|13 low Small-Large isolated
## 2441 5 20 1013 3|13 low Small-Large isolated
## 2442 5 20 1013 3|13 low Small-Large isolated
## 2443 5 20 1013 3|13 low Small-Large isolated
## 2444 5 20 1013 3|13 low Small-Large isolated
## 2445 5 20 1013 3|13 low Small-Large isolated
## 2446 5 20 1013 3|13 low Small-Large isolated
## 2447 5 20 1013 3|13 low Small-Large isolated
## 2448 5 20 1013 3|13 low Small-Large isolated
## 2449 6 24 1013 3|13 low Small-Large isolated
## 2450 6 24 1013 3|13 low Small-Large isolated
## 2451 6 24 1013 3|13 low Small-Large isolated
## 2452 6 24 1013 3|13 low Small-Large isolated
## 2453 6 24 1013 3|13 low Small-Large isolated
## 2454 6 24 1013 3|13 low Small-Large isolated
## 2455 6 24 1013 3|13 low Small-Large isolated
## 2456 6 24 1013 3|13 low Small-Large isolated
## 2457 6 24 1013 3|13 low Small-Large isolated
## 2458 6 24 1013 3|13 low Small-Large isolated
## 2459 6 24 1013 3|13 low Small-Large isolated
## 2460 6 24 1013 3|13 low Small-Large isolated
## 2461 6 24 1013 3|13 low Small-Large isolated
## 2462 6 24 1013 3|13 low Small-Large isolated
## 2463 6 24 1013 3|13 low Small-Large isolated
## 2464 6 24 1013 3|13 low Small-Large isolated
## 2465 6 24 1013 3|13 low Small-Large isolated
## 2466 6 24 1013 3|13 low Small-Large isolated
## 2467 6 24 1013 3|13 low Small-Large isolated
## 2468 6 24 1013 3|13 low Small-Large isolated
## 2469 6 24 1013 3|13 low Small-Large isolated
## 2470 6 24 1013 3|13 low Small-Large isolated
## 2471 6 24 1013 3|13 low Small-Large isolated
## 2472 6 24 1013 3|13 low Small-Large isolated
## 2473 7 28 1013 3|13 low Small-Large isolated
## 2474 7 28 1013 3|13 low Small-Large isolated
## 2475 7 28 1013 3|13 low Small-Large isolated
## 2476 7 28 1013 3|13 low Small-Large isolated
## 2477 7 28 1013 3|13 low Small-Large isolated
## 2478 7 28 1013 3|13 low Small-Large isolated
## 2479 7 28 1013 3|13 low Small-Large isolated
## 2480 7 28 1013 3|13 low Small-Large isolated
## 2481 7 28 1013 3|13 low Small-Large isolated
## 2482 7 28 1013 3|13 low Small-Large isolated
## 2483 7 28 1013 3|13 low Small-Large isolated
## 2484 7 28 1013 3|13 low Small-Large isolated
## 2485 7 28 1013 3|13 low Small-Large isolated
## 2486 7 28 1013 3|13 low Small-Large isolated
## 2487 7 28 1013 3|13 low Small-Large isolated
## 2488 7 28 1013 3|13 low Small-Large isolated
## 2489 7 28 1013 3|13 low Small-Large isolated
## 2490 7 28 1013 3|13 low Small-Large isolated
## 2491 7 28 1013 3|13 low Small-Large isolated
## 2492 7 28 1013 3|13 low Small-Large isolated
## 2493 7 28 1013 3|13 low Small-Large isolated
## 2494 7 28 1013 3|13 low Small-Large isolated
## 2495 7 28 1013 3|13 low Small-Large isolated
## 2496 7 28 1013 3|13 low Small-Large isolated
## 2497 0 0 1014 3|14 low Small-Large isolated
## 2498 0 0 1014 3|14 low Small-Large isolated
## 2499 0 0 1014 3|14 low Small-Large isolated
## 2500 0 0 1014 3|14 low Small-Large isolated
## 2501 0 0 1014 3|14 low Small-Large isolated
## 2502 0 0 1014 3|14 low Small-Large isolated
## 2503 0 0 1014 3|14 low Small-Large isolated
## 2504 0 0 1014 3|14 low Small-Large isolated
## 2505 0 0 1014 3|14 low Small-Large isolated
## 2506 0 0 1014 3|14 low Small-Large isolated
## 2507 0 0 1014 3|14 low Small-Large isolated
## 2508 0 0 1014 3|14 low Small-Large isolated
## 2509 0 0 1014 3|14 low Small-Large isolated
## 2510 0 0 1014 3|14 low Small-Large isolated
## 2511 0 0 1014 3|14 low Small-Large isolated
## 2512 0 0 1014 3|14 low Small-Large isolated
## 2513 0 0 1014 3|14 low Small-Large isolated
## 2514 0 0 1014 3|14 low Small-Large isolated
## 2515 0 0 1014 3|14 low Small-Large isolated
## 2516 0 0 1014 3|14 low Small-Large isolated
## 2517 0 0 1014 3|14 low Small-Large isolated
## 2518 0 0 1014 3|14 low Small-Large isolated
## 2519 0 0 1014 3|14 low Small-Large isolated
## 2520 0 0 1014 3|14 low Small-Large isolated
## 2521 1 4 1014 3|14 low Small-Large isolated
## 2522 1 4 1014 3|14 low Small-Large isolated
## 2523 1 4 1014 3|14 low Small-Large isolated
## 2524 1 4 1014 3|14 low Small-Large isolated
## 2525 1 4 1014 3|14 low Small-Large isolated
## 2526 1 4 1014 3|14 low Small-Large isolated
## 2527 1 4 1014 3|14 low Small-Large isolated
## 2528 1 4 1014 3|14 low Small-Large isolated
## 2529 1 4 1014 3|14 low Small-Large isolated
## 2530 1 4 1014 3|14 low Small-Large isolated
## 2531 1 4 1014 3|14 low Small-Large isolated
## 2532 1 4 1014 3|14 low Small-Large isolated
## 2533 1 4 1014 3|14 low Small-Large isolated
## 2534 1 4 1014 3|14 low Small-Large isolated
## 2535 1 4 1014 3|14 low Small-Large isolated
## 2536 1 4 1014 3|14 low Small-Large isolated
## 2537 1 4 1014 3|14 low Small-Large isolated
## 2538 1 4 1014 3|14 low Small-Large isolated
## 2539 1 4 1014 3|14 low Small-Large isolated
## 2540 1 4 1014 3|14 low Small-Large isolated
## 2541 1 4 1014 3|14 low Small-Large isolated
## 2542 1 4 1014 3|14 low Small-Large isolated
## 2543 1 4 1014 3|14 low Small-Large isolated
## 2544 1 4 1014 3|14 low Small-Large isolated
## 2545 2 8 1014 3|14 low Small-Large isolated
## 2546 2 8 1014 3|14 low Small-Large isolated
## 2547 2 8 1014 3|14 low Small-Large isolated
## 2548 2 8 1014 3|14 low Small-Large isolated
## 2549 2 8 1014 3|14 low Small-Large isolated
## 2550 2 8 1014 3|14 low Small-Large isolated
## 2551 2 8 1014 3|14 low Small-Large isolated
## 2552 2 8 1014 3|14 low Small-Large isolated
## 2553 2 8 1014 3|14 low Small-Large isolated
## 2554 2 8 1014 3|14 low Small-Large isolated
## 2555 2 8 1014 3|14 low Small-Large isolated
## 2556 2 8 1014 3|14 low Small-Large isolated
## 2557 2 8 1014 3|14 low Small-Large isolated
## 2558 2 8 1014 3|14 low Small-Large isolated
## 2559 2 8 1014 3|14 low Small-Large isolated
## 2560 2 8 1014 3|14 low Small-Large isolated
## 2561 2 8 1014 3|14 low Small-Large isolated
## 2562 2 8 1014 3|14 low Small-Large isolated
## 2563 2 8 1014 3|14 low Small-Large isolated
## 2564 2 8 1014 3|14 low Small-Large isolated
## 2565 2 8 1014 3|14 low Small-Large isolated
## 2566 2 8 1014 3|14 low Small-Large isolated
## 2567 2 8 1014 3|14 low Small-Large isolated
## 2568 2 8 1014 3|14 low Small-Large isolated
## 2569 3 12 1014 3|14 low Small-Large isolated
## 2570 3 12 1014 3|14 low Small-Large isolated
## 2571 3 12 1014 3|14 low Small-Large isolated
## 2572 3 12 1014 3|14 low Small-Large isolated
## 2573 3 12 1014 3|14 low Small-Large isolated
## 2574 3 12 1014 3|14 low Small-Large isolated
## 2575 3 12 1014 3|14 low Small-Large isolated
## 2576 3 12 1014 3|14 low Small-Large isolated
## 2577 3 12 1014 3|14 low Small-Large isolated
## 2578 3 12 1014 3|14 low Small-Large isolated
## 2579 3 12 1014 3|14 low Small-Large isolated
## 2580 3 12 1014 3|14 low Small-Large isolated
## 2581 3 12 1014 3|14 low Small-Large isolated
## 2582 3 12 1014 3|14 low Small-Large isolated
## 2583 3 12 1014 3|14 low Small-Large isolated
## 2584 3 12 1014 3|14 low Small-Large isolated
## 2585 3 12 1014 3|14 low Small-Large isolated
## 2586 3 12 1014 3|14 low Small-Large isolated
## 2587 3 12 1014 3|14 low Small-Large isolated
## 2588 3 12 1014 3|14 low Small-Large isolated
## 2589 3 12 1014 3|14 low Small-Large isolated
## 2590 3 12 1014 3|14 low Small-Large isolated
## 2591 3 12 1014 3|14 low Small-Large isolated
## 2592 3 12 1014 3|14 low Small-Large isolated
## 2593 4 16 1014 3|14 low Small-Large isolated
## 2594 4 16 1014 3|14 low Small-Large isolated
## 2595 4 16 1014 3|14 low Small-Large isolated
## 2596 4 16 1014 3|14 low Small-Large isolated
## 2597 4 16 1014 3|14 low Small-Large isolated
## 2598 4 16 1014 3|14 low Small-Large isolated
## 2599 4 16 1014 3|14 low Small-Large isolated
## 2600 4 16 1014 3|14 low Small-Large isolated
## 2601 4 16 1014 3|14 low Small-Large isolated
## 2602 4 16 1014 3|14 low Small-Large isolated
## 2603 4 16 1014 3|14 low Small-Large isolated
## 2604 4 16 1014 3|14 low Small-Large isolated
## 2605 4 16 1014 3|14 low Small-Large isolated
## 2606 4 16 1014 3|14 low Small-Large isolated
## 2607 4 16 1014 3|14 low Small-Large isolated
## 2608 4 16 1014 3|14 low Small-Large isolated
## 2609 4 16 1014 3|14 low Small-Large isolated
## 2610 4 16 1014 3|14 low Small-Large isolated
## 2611 4 16 1014 3|14 low Small-Large isolated
## 2612 4 16 1014 3|14 low Small-Large isolated
## 2613 4 16 1014 3|14 low Small-Large isolated
## 2614 4 16 1014 3|14 low Small-Large isolated
## 2615 4 16 1014 3|14 low Small-Large isolated
## 2616 4 16 1014 3|14 low Small-Large isolated
## 2617 5 20 1014 3|14 low Small-Large isolated
## 2618 5 20 1014 3|14 low Small-Large isolated
## 2619 5 20 1014 3|14 low Small-Large isolated
## 2620 5 20 1014 3|14 low Small-Large isolated
## 2621 5 20 1014 3|14 low Small-Large isolated
## 2622 5 20 1014 3|14 low Small-Large isolated
## 2623 5 20 1014 3|14 low Small-Large isolated
## 2624 5 20 1014 3|14 low Small-Large isolated
## 2625 5 20 1014 3|14 low Small-Large isolated
## 2626 5 20 1014 3|14 low Small-Large isolated
## 2627 5 20 1014 3|14 low Small-Large isolated
## 2628 5 20 1014 3|14 low Small-Large isolated
## 2629 5 20 1014 3|14 low Small-Large isolated
## 2630 5 20 1014 3|14 low Small-Large isolated
## 2631 5 20 1014 3|14 low Small-Large isolated
## mean_shannon mean_richness jaccard_index bray_curtis beta_spatial_turnover
## 1 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 3 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 4 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 5 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 6 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 7 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 8 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 9 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 10 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 11 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 12 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 13 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 14 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 15 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 16 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 17 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 18 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 19 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 20 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 21 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 22 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 23 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 24 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 25 1.5003642 7.5 0.3797327 0.2343643 0.1428571
## 26 1.5003642 7.5 0.3797327 0.2343643 0.1428571
## 27 1.5003642 7.5 0.3797327 0.2343643 0.1428571
## 28 1.5003642 7.5 0.3797327 0.2343643 0.1428571
## 29 1.5003642 7.5 0.3797327 0.2343643 0.1428571
## 30 1.5003642 7.5 0.3797327 0.2343643 0.1428571
## 31 1.5003642 7.5 0.3797327 0.2343643 0.1428571
## 32 1.5003642 7.5 0.3797327 0.2343643 0.1428571
## 33 1.5003642 7.5 0.3797327 0.2343643 0.1428571
## 34 1.5003642 7.5 0.3797327 0.2343643 0.1428571
## 35 1.5003642 7.5 0.3797327 0.2343643 0.1428571
## 36 1.5003642 7.5 0.3797327 0.2343643 0.1428571
## 37 1.5003642 7.5 0.3797327 0.2343643 0.1428571
## 38 1.5003642 7.5 0.3797327 0.2343643 0.1428571
## 39 1.5003642 7.5 0.3797327 0.2343643 0.1428571
## 40 1.5003642 7.5 0.3797327 0.2343643 0.1428571
## 41 1.5003642 7.5 0.3797327 0.2343643 0.1428571
## 42 1.5003642 7.5 0.3797327 0.2343643 0.1428571
## 43 1.5003642 7.5 0.3797327 0.2343643 0.1428571
## 44 1.5003642 7.5 0.3797327 0.2343643 0.1428571
## 45 1.5003642 7.5 0.3797327 0.2343643 0.1428571
## 46 1.5003642 7.5 0.3797327 0.2343643 0.1428571
## 47 1.5003642 7.5 0.3797327 0.2343643 0.1428571
## 48 1.5003642 7.5 0.3797327 0.2343643 0.1428571
## 49 1.5643953 8.0 0.5027346 0.3357686 0.1250000
## 50 1.5643953 8.0 0.5027346 0.3357686 0.1250000
## 51 1.5643953 8.0 0.5027346 0.3357686 0.1250000
## 52 1.5643953 8.0 0.5027346 0.3357686 0.1250000
## 53 1.5643953 8.0 0.5027346 0.3357686 0.1250000
## 54 1.5643953 8.0 0.5027346 0.3357686 0.1250000
## 55 1.5643953 8.0 0.5027346 0.3357686 0.1250000
## 56 1.5643953 8.0 0.5027346 0.3357686 0.1250000
## 57 1.5643953 8.0 0.5027346 0.3357686 0.1250000
## 58 1.5643953 8.0 0.5027346 0.3357686 0.1250000
## 59 1.5643953 8.0 0.5027346 0.3357686 0.1250000
## 60 1.5643953 8.0 0.5027346 0.3357686 0.1250000
## 61 1.5643953 8.0 0.5027346 0.3357686 0.1250000
## 62 1.5643953 8.0 0.5027346 0.3357686 0.1250000
## 63 1.5643953 8.0 0.5027346 0.3357686 0.1250000
## 64 1.5643953 8.0 0.5027346 0.3357686 0.1250000
## 65 1.5643953 8.0 0.5027346 0.3357686 0.1250000
## 66 1.5643953 8.0 0.5027346 0.3357686 0.1250000
## 67 1.5643953 8.0 0.5027346 0.3357686 0.1250000
## 68 1.5643953 8.0 0.5027346 0.3357686 0.1250000
## 69 1.5643953 8.0 0.5027346 0.3357686 0.1250000
## 70 1.5643953 8.0 0.5027346 0.3357686 0.1250000
## 71 1.5643953 8.0 0.5027346 0.3357686 0.1250000
## 72 1.5643953 8.0 0.5027346 0.3357686 0.1250000
## 73 1.6095690 6.0 0.8561835 0.7485323 0.0000000
## 74 1.6095690 6.0 0.8561835 0.7485323 0.0000000
## 75 1.6095690 6.0 0.8561835 0.7485323 0.0000000
## 76 1.6095690 6.0 0.8561835 0.7485323 0.0000000
## 77 1.6095690 6.0 0.8561835 0.7485323 0.0000000
## 78 1.6095690 6.0 0.8561835 0.7485323 0.0000000
## 79 1.6095690 6.0 0.8561835 0.7485323 0.0000000
## 80 1.6095690 6.0 0.8561835 0.7485323 0.0000000
## 81 1.6095690 6.0 0.8561835 0.7485323 0.0000000
## 82 1.6095690 6.0 0.8561835 0.7485323 0.0000000
## 83 1.6095690 6.0 0.8561835 0.7485323 0.0000000
## 84 1.6095690 6.0 0.8561835 0.7485323 0.0000000
## 85 1.6095690 6.0 0.8561835 0.7485323 0.0000000
## 86 1.6095690 6.0 0.8561835 0.7485323 0.0000000
## 87 1.6095690 6.0 0.8561835 0.7485323 0.0000000
## 88 1.6095690 6.0 0.8561835 0.7485323 0.0000000
## 89 1.6095690 6.0 0.8561835 0.7485323 0.0000000
## 90 1.6095690 6.0 0.8561835 0.7485323 0.0000000
## 91 1.6095690 6.0 0.8561835 0.7485323 0.0000000
## 92 1.6095690 6.0 0.8561835 0.7485323 0.0000000
## 93 1.6095690 6.0 0.8561835 0.7485323 0.0000000
## 94 1.6095690 6.0 0.8561835 0.7485323 0.0000000
## 95 1.6095690 6.0 0.8561835 0.7485323 0.0000000
## 96 1.6095690 6.0 0.8561835 0.7485323 0.0000000
## 97 1.8022460 7.5 0.4038401 0.2530073 0.1428571
## 98 1.8022460 7.5 0.4038401 0.2530073 0.1428571
## 99 1.8022460 7.5 0.4038401 0.2530073 0.1428571
## 100 1.8022460 7.5 0.4038401 0.2530073 0.1428571
## 101 1.8022460 7.5 0.4038401 0.2530073 0.1428571
## 102 1.8022460 7.5 0.4038401 0.2530073 0.1428571
## 103 1.8022460 7.5 0.4038401 0.2530073 0.1428571
## 104 1.8022460 7.5 0.4038401 0.2530073 0.1428571
## 105 1.8022460 7.5 0.4038401 0.2530073 0.1428571
## 106 1.8022460 7.5 0.4038401 0.2530073 0.1428571
## 107 1.8022460 7.5 0.4038401 0.2530073 0.1428571
## 108 1.8022460 7.5 0.4038401 0.2530073 0.1428571
## 109 1.8022460 7.5 0.4038401 0.2530073 0.1428571
## 110 1.8022460 7.5 0.4038401 0.2530073 0.1428571
## 111 1.8022460 7.5 0.4038401 0.2530073 0.1428571
## 112 1.8022460 7.5 0.4038401 0.2530073 0.1428571
## 113 1.8022460 7.5 0.4038401 0.2530073 0.1428571
## 114 1.8022460 7.5 0.4038401 0.2530073 0.1428571
## 115 1.8022460 7.5 0.4038401 0.2530073 0.1428571
## 116 1.8022460 7.5 0.4038401 0.2530073 0.1428571
## 117 1.8022460 7.5 0.4038401 0.2530073 0.1428571
## 118 1.8022460 7.5 0.4038401 0.2530073 0.1428571
## 119 1.8022460 7.5 0.4038401 0.2530073 0.1428571
## 120 1.8022460 7.5 0.4038401 0.2530073 0.1428571
## 121 0.9046531 4.0 0.8022244 0.6697618 0.0000000
## 122 0.9046531 4.0 0.8022244 0.6697618 0.0000000
## 123 0.9046531 4.0 0.8022244 0.6697618 0.0000000
## 124 0.9046531 4.0 0.8022244 0.6697618 0.0000000
## 125 0.9046531 4.0 0.8022244 0.6697618 0.0000000
## 126 0.9046531 4.0 0.8022244 0.6697618 0.0000000
## 127 0.9046531 4.0 0.8022244 0.6697618 0.0000000
## 128 0.9046531 4.0 0.8022244 0.6697618 0.0000000
## 129 0.9046531 4.0 0.8022244 0.6697618 0.0000000
## 130 0.9046531 4.0 0.8022244 0.6697618 0.0000000
## 131 0.9046531 4.0 0.8022244 0.6697618 0.0000000
## 132 0.9046531 4.0 0.8022244 0.6697618 0.0000000
## 133 0.9046531 4.0 0.8022244 0.6697618 0.0000000
## 134 0.9046531 4.0 0.8022244 0.6697618 0.0000000
## 135 0.9046531 4.0 0.8022244 0.6697618 0.0000000
## 136 0.9046531 4.0 0.8022244 0.6697618 0.0000000
## 137 0.9046531 4.0 0.8022244 0.6697618 0.0000000
## 138 0.9046531 4.0 0.8022244 0.6697618 0.0000000
## 139 0.9046531 4.0 0.8022244 0.6697618 0.0000000
## 140 0.9046531 4.0 0.8022244 0.6697618 0.0000000
## 141 0.9046531 4.0 0.8022244 0.6697618 0.0000000
## 142 0.9046531 4.0 0.8022244 0.6697618 0.0000000
## 143 0.9046531 4.0 0.8022244 0.6697618 0.0000000
## 144 0.9046531 4.0 0.8022244 0.6697618 0.0000000
## 145 1.1722772 6.0 0.8009542 0.6679930 0.4000000
## 146 1.1722772 6.0 0.8009542 0.6679930 0.4000000
## 147 1.1722772 6.0 0.8009542 0.6679930 0.4000000
## 148 1.1722772 6.0 0.8009542 0.6679930 0.4000000
## 149 1.1722772 6.0 0.8009542 0.6679930 0.4000000
## 150 1.1722772 6.0 0.8009542 0.6679930 0.4000000
## 151 1.1722772 6.0 0.8009542 0.6679930 0.4000000
## 152 1.1722772 6.0 0.8009542 0.6679930 0.4000000
## 153 1.1722772 6.0 0.8009542 0.6679930 0.4000000
## 154 1.1722772 6.0 0.8009542 0.6679930 0.4000000
## 155 1.1722772 6.0 0.8009542 0.6679930 0.4000000
## 156 1.1722772 6.0 0.8009542 0.6679930 0.4000000
## 157 1.1722772 6.0 0.8009542 0.6679930 0.4000000
## 158 1.1722772 6.0 0.8009542 0.6679930 0.4000000
## 159 1.1722772 6.0 0.8009542 0.6679930 0.4000000
## 160 1.1722772 6.0 0.8009542 0.6679930 0.4000000
## 161 1.1722772 6.0 0.8009542 0.6679930 0.4000000
## 162 1.1722772 6.0 0.8009542 0.6679930 0.4000000
## 163 1.1722772 6.0 0.8009542 0.6679930 0.4000000
## 164 1.1722772 6.0 0.8009542 0.6679930 0.4000000
## 165 1.1722772 6.0 0.8009542 0.6679930 0.4000000
## 166 1.1722772 6.0 0.8009542 0.6679930 0.4000000
## 167 1.1722772 6.0 0.8009542 0.6679930 0.4000000
## 168 1.1722772 6.0 0.8009542 0.6679930 0.4000000
## 169 0.9415572 5.5 0.9159832 0.8449899 0.0000000
## 170 0.9415572 5.5 0.9159832 0.8449899 0.0000000
## 171 0.9415572 5.5 0.9159832 0.8449899 0.0000000
## 172 0.9415572 5.5 0.9159832 0.8449899 0.0000000
## 173 0.9415572 5.5 0.9159832 0.8449899 0.0000000
## 174 0.9415572 5.5 0.9159832 0.8449899 0.0000000
## 175 0.9415572 5.5 0.9159832 0.8449899 0.0000000
## 176 0.9415572 5.5 0.9159832 0.8449899 0.0000000
## 177 0.9415572 5.5 0.9159832 0.8449899 0.0000000
## 178 0.9415572 5.5 0.9159832 0.8449899 0.0000000
## 179 0.9415572 5.5 0.9159832 0.8449899 0.0000000
## 180 0.9415572 5.5 0.9159832 0.8449899 0.0000000
## 181 0.9415572 5.5 0.9159832 0.8449899 0.0000000
## 182 0.9415572 5.5 0.9159832 0.8449899 0.0000000
## 183 0.9415572 5.5 0.9159832 0.8449899 0.0000000
## 184 0.9415572 5.5 0.9159832 0.8449899 0.0000000
## 185 0.9415572 5.5 0.9159832 0.8449899 0.0000000
## 186 0.9415572 5.5 0.9159832 0.8449899 0.0000000
## 187 0.9415572 5.5 0.9159832 0.8449899 0.0000000
## 188 0.9415572 5.5 0.9159832 0.8449899 0.0000000
## 189 0.9415572 5.5 0.9159832 0.8449899 0.0000000
## 190 0.9415572 5.5 0.9159832 0.8449899 0.0000000
## 191 0.9415572 5.5 0.9159832 0.8449899 0.0000000
## 192 0.9415572 5.5 0.9159832 0.8449899 0.0000000
## 193 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 194 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 195 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 196 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 197 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 198 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 199 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 200 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 201 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 202 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 203 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 204 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 205 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 206 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 207 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 208 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 209 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 210 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 211 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 212 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 213 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 214 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 215 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 216 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 217 1.7344675 8.0 0.5863882 0.4148156 0.0000000
## 218 1.7344675 8.0 0.5863882 0.4148156 0.0000000
## 219 1.7344675 8.0 0.5863882 0.4148156 0.0000000
## 220 1.7344675 8.0 0.5863882 0.4148156 0.0000000
## 221 1.7344675 8.0 0.5863882 0.4148156 0.0000000
## 222 1.7344675 8.0 0.5863882 0.4148156 0.0000000
## 223 1.7344675 8.0 0.5863882 0.4148156 0.0000000
## 224 1.7344675 8.0 0.5863882 0.4148156 0.0000000
## 225 1.7344675 8.0 0.5863882 0.4148156 0.0000000
## 226 1.7344675 8.0 0.5863882 0.4148156 0.0000000
## 227 1.7344675 8.0 0.5863882 0.4148156 0.0000000
## 228 1.7344675 8.0 0.5863882 0.4148156 0.0000000
## 229 1.7344675 8.0 0.5863882 0.4148156 0.0000000
## 230 1.7344675 8.0 0.5863882 0.4148156 0.0000000
## 231 1.7344675 8.0 0.5863882 0.4148156 0.0000000
## 232 1.7344675 8.0 0.5863882 0.4148156 0.0000000
## 233 1.7344675 8.0 0.5863882 0.4148156 0.0000000
## 234 1.7344675 8.0 0.5863882 0.4148156 0.0000000
## 235 1.7344675 8.0 0.5863882 0.4148156 0.0000000
## 236 1.7344675 8.0 0.5863882 0.4148156 0.0000000
## 237 1.7344675 8.0 0.5863882 0.4148156 0.0000000
## 238 1.7344675 8.0 0.5863882 0.4148156 0.0000000
## 239 1.7344675 8.0 0.5863882 0.4148156 0.0000000
## 240 1.7344675 8.0 0.5863882 0.4148156 0.0000000
## 241 1.4913521 6.5 0.4020438 0.2515988 0.0000000
## 242 1.4913521 6.5 0.4020438 0.2515988 0.0000000
## 243 1.4913521 6.5 0.4020438 0.2515988 0.0000000
## 244 1.4913521 6.5 0.4020438 0.2515988 0.0000000
## 245 1.4913521 6.5 0.4020438 0.2515988 0.0000000
## 246 1.4913521 6.5 0.4020438 0.2515988 0.0000000
## 247 1.4913521 6.5 0.4020438 0.2515988 0.0000000
## 248 1.4913521 6.5 0.4020438 0.2515988 0.0000000
## 249 1.4913521 6.5 0.4020438 0.2515988 0.0000000
## 250 1.4913521 6.5 0.4020438 0.2515988 0.0000000
## 251 1.4913521 6.5 0.4020438 0.2515988 0.0000000
## 252 1.4913521 6.5 0.4020438 0.2515988 0.0000000
## 253 1.4913521 6.5 0.4020438 0.2515988 0.0000000
## 254 1.4913521 6.5 0.4020438 0.2515988 0.0000000
## 255 1.4913521 6.5 0.4020438 0.2515988 0.0000000
## 256 1.4913521 6.5 0.4020438 0.2515988 0.0000000
## 257 1.4913521 6.5 0.4020438 0.2515988 0.0000000
## 258 1.4913521 6.5 0.4020438 0.2515988 0.0000000
## 259 1.4913521 6.5 0.4020438 0.2515988 0.0000000
## 260 1.4913521 6.5 0.4020438 0.2515988 0.0000000
## 261 1.4913521 6.5 0.4020438 0.2515988 0.0000000
## 262 1.4913521 6.5 0.4020438 0.2515988 0.0000000
## 263 1.4913521 6.5 0.4020438 0.2515988 0.0000000
## 264 1.4913521 6.5 0.4020438 0.2515988 0.0000000
## 265 1.5288340 6.0 0.9015342 0.8207213 0.2500000
## 266 1.5288340 6.0 0.9015342 0.8207213 0.2500000
## 267 1.5288340 6.0 0.9015342 0.8207213 0.2500000
## 268 1.5288340 6.0 0.9015342 0.8207213 0.2500000
## 269 1.5288340 6.0 0.9015342 0.8207213 0.2500000
## 270 1.5288340 6.0 0.9015342 0.8207213 0.2500000
## 271 1.5288340 6.0 0.9015342 0.8207213 0.2500000
## 272 1.5288340 6.0 0.9015342 0.8207213 0.2500000
## 273 1.5288340 6.0 0.9015342 0.8207213 0.2500000
## 274 1.5288340 6.0 0.9015342 0.8207213 0.2500000
## 275 1.5288340 6.0 0.9015342 0.8207213 0.2500000
## 276 1.5288340 6.0 0.9015342 0.8207213 0.2500000
## 277 1.5288340 6.0 0.9015342 0.8207213 0.2500000
## 278 1.5288340 6.0 0.9015342 0.8207213 0.2500000
## 279 1.5288340 6.0 0.9015342 0.8207213 0.2500000
## 280 1.5288340 6.0 0.9015342 0.8207213 0.2500000
## 281 1.5288340 6.0 0.9015342 0.8207213 0.2500000
## 282 1.5288340 6.0 0.9015342 0.8207213 0.2500000
## 283 1.5288340 6.0 0.9015342 0.8207213 0.2500000
## 284 1.5288340 6.0 0.9015342 0.8207213 0.2500000
## 285 1.5288340 6.0 0.9015342 0.8207213 0.2500000
## 286 1.5288340 6.0 0.9015342 0.8207213 0.2500000
## 287 1.5288340 6.0 0.9015342 0.8207213 0.2500000
## 288 1.5288340 6.0 0.9015342 0.8207213 0.2500000
## 289 1.5754616 6.0 0.5594016 0.3883120 0.2000000
## 290 1.5754616 6.0 0.5594016 0.3883120 0.2000000
## 291 1.5754616 6.0 0.5594016 0.3883120 0.2000000
## 292 1.5754616 6.0 0.5594016 0.3883120 0.2000000
## 293 1.5754616 6.0 0.5594016 0.3883120 0.2000000
## 294 1.5754616 6.0 0.5594016 0.3883120 0.2000000
## 295 1.5754616 6.0 0.5594016 0.3883120 0.2000000
## 296 1.5754616 6.0 0.5594016 0.3883120 0.2000000
## 297 1.5754616 6.0 0.5594016 0.3883120 0.2000000
## 298 1.5754616 6.0 0.5594016 0.3883120 0.2000000
## 299 1.5754616 6.0 0.5594016 0.3883120 0.2000000
## 300 1.5754616 6.0 0.5594016 0.3883120 0.2000000
## 301 1.5754616 6.0 0.5594016 0.3883120 0.2000000
## 302 1.5754616 6.0 0.5594016 0.3883120 0.2000000
## 303 1.5754616 6.0 0.5594016 0.3883120 0.2000000
## 304 1.5754616 6.0 0.5594016 0.3883120 0.2000000
## 305 1.5754616 6.0 0.5594016 0.3883120 0.2000000
## 306 1.5754616 6.0 0.5594016 0.3883120 0.2000000
## 307 1.5754616 6.0 0.5594016 0.3883120 0.2000000
## 308 1.5754616 6.0 0.5594016 0.3883120 0.2000000
## 309 1.5754616 6.0 0.5594016 0.3883120 0.2000000
## 310 1.5754616 6.0 0.5594016 0.3883120 0.2000000
## 311 1.5754616 6.0 0.5594016 0.3883120 0.2000000
## 312 1.5754616 6.0 0.5594016 0.3883120 0.2000000
## 313 1.1147692 5.0 0.7862454 0.6477795 0.0000000
## 314 1.1147692 5.0 0.7862454 0.6477795 0.0000000
## 315 1.1147692 5.0 0.7862454 0.6477795 0.0000000
## 316 1.1147692 5.0 0.7862454 0.6477795 0.0000000
## 317 1.1147692 5.0 0.7862454 0.6477795 0.0000000
## 318 1.1147692 5.0 0.7862454 0.6477795 0.0000000
## 319 1.1147692 5.0 0.7862454 0.6477795 0.0000000
## 320 1.1147692 5.0 0.7862454 0.6477795 0.0000000
## 321 1.1147692 5.0 0.7862454 0.6477795 0.0000000
## 322 1.1147692 5.0 0.7862454 0.6477795 0.0000000
## 323 1.1147692 5.0 0.7862454 0.6477795 0.0000000
## 324 1.1147692 5.0 0.7862454 0.6477795 0.0000000
## 325 1.1147692 5.0 0.7862454 0.6477795 0.0000000
## 326 1.1147692 5.0 0.7862454 0.6477795 0.0000000
## 327 1.1147692 5.0 0.7862454 0.6477795 0.0000000
## 328 1.1147692 5.0 0.7862454 0.6477795 0.0000000
## 329 1.1147692 5.0 0.7862454 0.6477795 0.0000000
## 330 1.1147692 5.0 0.7862454 0.6477795 0.0000000
## 331 1.1147692 5.0 0.7862454 0.6477795 0.0000000
## 332 1.1147692 5.0 0.7862454 0.6477795 0.0000000
## 333 1.1147692 5.0 0.7862454 0.6477795 0.0000000
## 334 1.1147692 5.0 0.7862454 0.6477795 0.0000000
## 335 1.1147692 5.0 0.7862454 0.6477795 0.0000000
## 336 1.1147692 5.0 0.7862454 0.6477795 0.0000000
## 337 1.2716771 6.0 0.7890579 0.6516066 0.2000000
## 338 1.2716771 6.0 0.7890579 0.6516066 0.2000000
## 339 1.2716771 6.0 0.7890579 0.6516066 0.2000000
## 340 1.2716771 6.0 0.7890579 0.6516066 0.2000000
## 341 1.2716771 6.0 0.7890579 0.6516066 0.2000000
## 342 1.2716771 6.0 0.7890579 0.6516066 0.2000000
## 343 1.2716771 6.0 0.7890579 0.6516066 0.2000000
## 344 1.2716771 6.0 0.7890579 0.6516066 0.2000000
## 345 1.2716771 6.0 0.7890579 0.6516066 0.2000000
## 346 1.2716771 6.0 0.7890579 0.6516066 0.2000000
## 347 1.2716771 6.0 0.7890579 0.6516066 0.2000000
## 348 1.2716771 6.0 0.7890579 0.6516066 0.2000000
## 349 1.2716771 6.0 0.7890579 0.6516066 0.2000000
## 350 1.2716771 6.0 0.7890579 0.6516066 0.2000000
## 351 1.2716771 6.0 0.7890579 0.6516066 0.2000000
## 352 1.2716771 6.0 0.7890579 0.6516066 0.2000000
## 353 1.2716771 6.0 0.7890579 0.6516066 0.2000000
## 354 1.2716771 6.0 0.7890579 0.6516066 0.2000000
## 355 1.2716771 6.0 0.7890579 0.6516066 0.2000000
## 356 1.2716771 6.0 0.7890579 0.6516066 0.2000000
## 357 1.2716771 6.0 0.7890579 0.6516066 0.2000000
## 358 1.2716771 6.0 0.7890579 0.6516066 0.2000000
## 359 1.2716771 6.0 0.7890579 0.6516066 0.2000000
## 360 1.2716771 6.0 0.7890579 0.6516066 0.2000000
## 361 1.0070034 4.5 0.9160517 0.8451064 0.5000000
## 362 1.0070034 4.5 0.9160517 0.8451064 0.5000000
## 363 1.0070034 4.5 0.9160517 0.8451064 0.5000000
## 364 1.0070034 4.5 0.9160517 0.8451064 0.5000000
## 365 1.0070034 4.5 0.9160517 0.8451064 0.5000000
## 366 1.0070034 4.5 0.9160517 0.8451064 0.5000000
## 367 1.0070034 4.5 0.9160517 0.8451064 0.5000000
## 368 1.0070034 4.5 0.9160517 0.8451064 0.5000000
## 369 1.0070034 4.5 0.9160517 0.8451064 0.5000000
## 370 1.0070034 4.5 0.9160517 0.8451064 0.5000000
## 371 1.0070034 4.5 0.9160517 0.8451064 0.5000000
## 372 1.0070034 4.5 0.9160517 0.8451064 0.5000000
## 373 1.0070034 4.5 0.9160517 0.8451064 0.5000000
## 374 1.0070034 4.5 0.9160517 0.8451064 0.5000000
## 375 1.0070034 4.5 0.9160517 0.8451064 0.5000000
## 376 1.0070034 4.5 0.9160517 0.8451064 0.5000000
## 377 1.0070034 4.5 0.9160517 0.8451064 0.5000000
## 378 1.0070034 4.5 0.9160517 0.8451064 0.5000000
## 379 1.0070034 4.5 0.9160517 0.8451064 0.5000000
## 380 1.0070034 4.5 0.9160517 0.8451064 0.5000000
## 381 1.0070034 4.5 0.9160517 0.8451064 0.5000000
## 382 1.0070034 4.5 0.9160517 0.8451064 0.5000000
## 383 1.0070034 4.5 0.9160517 0.8451064 0.5000000
## 384 1.0070034 4.5 0.9160517 0.8451064 0.5000000
## 385 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 386 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 387 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 388 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 389 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 390 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 391 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 392 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 393 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 394 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 395 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 396 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 397 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 398 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 399 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 400 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 401 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 402 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 403 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 404 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 405 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 406 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 407 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 408 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 409 1.6354094 8.0 0.5434531 0.3731106 0.1428571
## 410 1.6354094 8.0 0.5434531 0.3731106 0.1428571
## 411 1.6354094 8.0 0.5434531 0.3731106 0.1428571
## 412 1.6354094 8.0 0.5434531 0.3731106 0.1428571
## 413 1.6354094 8.0 0.5434531 0.3731106 0.1428571
## 414 1.6354094 8.0 0.5434531 0.3731106 0.1428571
## 415 1.6354094 8.0 0.5434531 0.3731106 0.1428571
## 416 1.6354094 8.0 0.5434531 0.3731106 0.1428571
## 417 1.6354094 8.0 0.5434531 0.3731106 0.1428571
## 418 1.6354094 8.0 0.5434531 0.3731106 0.1428571
## 419 1.6354094 8.0 0.5434531 0.3731106 0.1428571
## 420 1.6354094 8.0 0.5434531 0.3731106 0.1428571
## 421 1.6354094 8.0 0.5434531 0.3731106 0.1428571
## 422 1.6354094 8.0 0.5434531 0.3731106 0.1428571
## 423 1.6354094 8.0 0.5434531 0.3731106 0.1428571
## 424 1.6354094 8.0 0.5434531 0.3731106 0.1428571
## 425 1.6354094 8.0 0.5434531 0.3731106 0.1428571
## 426 1.6354094 8.0 0.5434531 0.3731106 0.1428571
## 427 1.6354094 8.0 0.5434531 0.3731106 0.1428571
## 428 1.6354094 8.0 0.5434531 0.3731106 0.1428571
## 429 1.6354094 8.0 0.5434531 0.3731106 0.1428571
## 430 1.6354094 8.0 0.5434531 0.3731106 0.1428571
## 431 1.6354094 8.0 0.5434531 0.3731106 0.1428571
## 432 1.6354094 8.0 0.5434531 0.3731106 0.1428571
## 433 1.7043816 8.5 0.4219277 0.2673691 0.1250000
## 434 1.7043816 8.5 0.4219277 0.2673691 0.1250000
## 435 1.7043816 8.5 0.4219277 0.2673691 0.1250000
## 436 1.7043816 8.5 0.4219277 0.2673691 0.1250000
## 437 1.7043816 8.5 0.4219277 0.2673691 0.1250000
## 438 1.7043816 8.5 0.4219277 0.2673691 0.1250000
## 439 1.7043816 8.5 0.4219277 0.2673691 0.1250000
## 440 1.7043816 8.5 0.4219277 0.2673691 0.1250000
## 441 1.7043816 8.5 0.4219277 0.2673691 0.1250000
## 442 1.7043816 8.5 0.4219277 0.2673691 0.1250000
## 443 1.7043816 8.5 0.4219277 0.2673691 0.1250000
## 444 1.7043816 8.5 0.4219277 0.2673691 0.1250000
## 445 1.7043816 8.5 0.4219277 0.2673691 0.1250000
## 446 1.7043816 8.5 0.4219277 0.2673691 0.1250000
## 447 1.7043816 8.5 0.4219277 0.2673691 0.1250000
## 448 1.7043816 8.5 0.4219277 0.2673691 0.1250000
## 449 1.7043816 8.5 0.4219277 0.2673691 0.1250000
## 450 1.7043816 8.5 0.4219277 0.2673691 0.1250000
## 451 1.7043816 8.5 0.4219277 0.2673691 0.1250000
## 452 1.7043816 8.5 0.4219277 0.2673691 0.1250000
## 453 1.7043816 8.5 0.4219277 0.2673691 0.1250000
## 454 1.7043816 8.5 0.4219277 0.2673691 0.1250000
## 455 1.7043816 8.5 0.4219277 0.2673691 0.1250000
## 456 1.7043816 8.5 0.4219277 0.2673691 0.1250000
## 457 1.6299430 6.5 0.8561835 0.7485323 0.0000000
## 458 1.6299430 6.5 0.8561835 0.7485323 0.0000000
## 459 1.6299430 6.5 0.8561835 0.7485323 0.0000000
## 460 1.6299430 6.5 0.8561835 0.7485323 0.0000000
## 461 1.6299430 6.5 0.8561835 0.7485323 0.0000000
## 462 1.6299430 6.5 0.8561835 0.7485323 0.0000000
## 463 1.6299430 6.5 0.8561835 0.7485323 0.0000000
## 464 1.6299430 6.5 0.8561835 0.7485323 0.0000000
## 465 1.6299430 6.5 0.8561835 0.7485323 0.0000000
## 466 1.6299430 6.5 0.8561835 0.7485323 0.0000000
## 467 1.6299430 6.5 0.8561835 0.7485323 0.0000000
## 468 1.6299430 6.5 0.8561835 0.7485323 0.0000000
## 469 1.6299430 6.5 0.8561835 0.7485323 0.0000000
## 470 1.6299430 6.5 0.8561835 0.7485323 0.0000000
## 471 1.6299430 6.5 0.8561835 0.7485323 0.0000000
## 472 1.6299430 6.5 0.8561835 0.7485323 0.0000000
## 473 1.6299430 6.5 0.8561835 0.7485323 0.0000000
## 474 1.6299430 6.5 0.8561835 0.7485323 0.0000000
## 475 1.6299430 6.5 0.8561835 0.7485323 0.0000000
## 476 1.6299430 6.5 0.8561835 0.7485323 0.0000000
## 477 1.6299430 6.5 0.8561835 0.7485323 0.0000000
## 478 1.6299430 6.5 0.8561835 0.7485323 0.0000000
## 479 1.6299430 6.5 0.8561835 0.7485323 0.0000000
## 480 1.6299430 6.5 0.8561835 0.7485323 0.0000000
## 481 1.7128054 7.0 0.5498951 0.3792106 0.2857143
## 482 1.7128054 7.0 0.5498951 0.3792106 0.2857143
## 483 1.7128054 7.0 0.5498951 0.3792106 0.2857143
## 484 1.7128054 7.0 0.5498951 0.3792106 0.2857143
## 485 1.7128054 7.0 0.5498951 0.3792106 0.2857143
## 486 1.7128054 7.0 0.5498951 0.3792106 0.2857143
## 487 1.7128054 7.0 0.5498951 0.3792106 0.2857143
## 488 1.7128054 7.0 0.5498951 0.3792106 0.2857143
## 489 1.7128054 7.0 0.5498951 0.3792106 0.2857143
## 490 1.7128054 7.0 0.5498951 0.3792106 0.2857143
## 491 1.7128054 7.0 0.5498951 0.3792106 0.2857143
## 492 1.7128054 7.0 0.5498951 0.3792106 0.2857143
## 493 1.7128054 7.0 0.5498951 0.3792106 0.2857143
## 494 1.7128054 7.0 0.5498951 0.3792106 0.2857143
## 495 1.7128054 7.0 0.5498951 0.3792106 0.2857143
## 496 1.7128054 7.0 0.5498951 0.3792106 0.2857143
## 497 1.7128054 7.0 0.5498951 0.3792106 0.2857143
## 498 1.7128054 7.0 0.5498951 0.3792106 0.2857143
## 499 1.7128054 7.0 0.5498951 0.3792106 0.2857143
## 500 1.7128054 7.0 0.5498951 0.3792106 0.2857143
## 501 1.7128054 7.0 0.5498951 0.3792106 0.2857143
## 502 1.7128054 7.0 0.5498951 0.3792106 0.2857143
## 503 1.7128054 7.0 0.5498951 0.3792106 0.2857143
## 504 1.7128054 7.0 0.5498951 0.3792106 0.2857143
## 505 0.9826256 4.0 0.8091603 0.6794872 0.0000000
## 506 0.9826256 4.0 0.8091603 0.6794872 0.0000000
## 507 0.9826256 4.0 0.8091603 0.6794872 0.0000000
## 508 0.9826256 4.0 0.8091603 0.6794872 0.0000000
## 509 0.9826256 4.0 0.8091603 0.6794872 0.0000000
## 510 0.9826256 4.0 0.8091603 0.6794872 0.0000000
## 511 0.9826256 4.0 0.8091603 0.6794872 0.0000000
## 512 0.9826256 4.0 0.8091603 0.6794872 0.0000000
## 513 0.9826256 4.0 0.8091603 0.6794872 0.0000000
## 514 0.9826256 4.0 0.8091603 0.6794872 0.0000000
## 515 0.9826256 4.0 0.8091603 0.6794872 0.0000000
## 516 0.9826256 4.0 0.8091603 0.6794872 0.0000000
## 517 0.9826256 4.0 0.8091603 0.6794872 0.0000000
## 518 0.9826256 4.0 0.8091603 0.6794872 0.0000000
## 519 0.9826256 4.0 0.8091603 0.6794872 0.0000000
## 520 0.9826256 4.0 0.8091603 0.6794872 0.0000000
## 521 0.9826256 4.0 0.8091603 0.6794872 0.0000000
## 522 0.9826256 4.0 0.8091603 0.6794872 0.0000000
## 523 0.9826256 4.0 0.8091603 0.6794872 0.0000000
## 524 0.9826256 4.0 0.8091603 0.6794872 0.0000000
## 525 0.9826256 4.0 0.8091603 0.6794872 0.0000000
## 526 0.9826256 4.0 0.8091603 0.6794872 0.0000000
## 527 0.9826256 4.0 0.8091603 0.6794872 0.0000000
## 528 0.9826256 4.0 0.8091603 0.6794872 0.0000000
## 529 1.1849855 6.5 0.7669141 0.6219470 0.2000000
## 530 1.1849855 6.5 0.7669141 0.6219470 0.2000000
## 531 1.1849855 6.5 0.7669141 0.6219470 0.2000000
## 532 1.1849855 6.5 0.7669141 0.6219470 0.2000000
## 533 1.1849855 6.5 0.7669141 0.6219470 0.2000000
## 534 1.1849855 6.5 0.7669141 0.6219470 0.2000000
## 535 1.1849855 6.5 0.7669141 0.6219470 0.2000000
## 536 1.1849855 6.5 0.7669141 0.6219470 0.2000000
## 537 1.1849855 6.5 0.7669141 0.6219470 0.2000000
## 538 1.1849855 6.5 0.7669141 0.6219470 0.2000000
## 539 1.1849855 6.5 0.7669141 0.6219470 0.2000000
## 540 1.1849855 6.5 0.7669141 0.6219470 0.2000000
## 541 1.1849855 6.5 0.7669141 0.6219470 0.2000000
## 542 1.1849855 6.5 0.7669141 0.6219470 0.2000000
## 543 1.1849855 6.5 0.7669141 0.6219470 0.2000000
## 544 1.1849855 6.5 0.7669141 0.6219470 0.2000000
## 545 1.1849855 6.5 0.7669141 0.6219470 0.2000000
## 546 1.1849855 6.5 0.7669141 0.6219470 0.2000000
## 547 1.1849855 6.5 0.7669141 0.6219470 0.2000000
## 548 1.1849855 6.5 0.7669141 0.6219470 0.2000000
## 549 1.1849855 6.5 0.7669141 0.6219470 0.2000000
## 550 1.1849855 6.5 0.7669141 0.6219470 0.2000000
## 551 1.1849855 6.5 0.7669141 0.6219470 0.2000000
## 552 1.1849855 6.5 0.7669141 0.6219470 0.2000000
## 553 0.8793394 4.5 0.9340896 0.8763303 0.0000000
## 554 0.8793394 4.5 0.9340896 0.8763303 0.0000000
## 555 0.8793394 4.5 0.9340896 0.8763303 0.0000000
## 556 0.8793394 4.5 0.9340896 0.8763303 0.0000000
## 557 0.8793394 4.5 0.9340896 0.8763303 0.0000000
## 558 0.8793394 4.5 0.9340896 0.8763303 0.0000000
## 559 0.8793394 4.5 0.9340896 0.8763303 0.0000000
## 560 0.8793394 4.5 0.9340896 0.8763303 0.0000000
## 561 0.8793394 4.5 0.9340896 0.8763303 0.0000000
## 562 0.8793394 4.5 0.9340896 0.8763303 0.0000000
## 563 0.8793394 4.5 0.9340896 0.8763303 0.0000000
## 564 0.8793394 4.5 0.9340896 0.8763303 0.0000000
## 565 0.8793394 4.5 0.9340896 0.8763303 0.0000000
## 566 0.8793394 4.5 0.9340896 0.8763303 0.0000000
## 567 0.8793394 4.5 0.9340896 0.8763303 0.0000000
## 568 0.8793394 4.5 0.9340896 0.8763303 0.0000000
## 569 0.8793394 4.5 0.9340896 0.8763303 0.0000000
## 570 0.8793394 4.5 0.9340896 0.8763303 0.0000000
## 571 0.8793394 4.5 0.9340896 0.8763303 0.0000000
## 572 0.8793394 4.5 0.9340896 0.8763303 0.0000000
## 573 0.8793394 4.5 0.9340896 0.8763303 0.0000000
## 574 0.8793394 4.5 0.9340896 0.8763303 0.0000000
## 575 0.8793394 4.5 0.9340896 0.8763303 0.0000000
## 576 0.8793394 4.5 0.9340896 0.8763303 0.0000000
## 577 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 578 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 579 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 580 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 581 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 582 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 583 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 584 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 585 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 586 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 587 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 588 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 589 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 590 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 591 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 592 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 593 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 594 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 595 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 596 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 597 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 598 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 599 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 600 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 601 1.5325570 7.0 0.6161471 0.4452403 0.2857143
## 602 1.5325570 7.0 0.6161471 0.4452403 0.2857143
## 603 1.5325570 7.0 0.6161471 0.4452403 0.2857143
## 604 1.5325570 7.0 0.6161471 0.4452403 0.2857143
## 605 1.5325570 7.0 0.6161471 0.4452403 0.2857143
## 606 1.5325570 7.0 0.6161471 0.4452403 0.2857143
## 607 1.5325570 7.0 0.6161471 0.4452403 0.2857143
## 608 1.5325570 7.0 0.6161471 0.4452403 0.2857143
## 609 1.5325570 7.0 0.6161471 0.4452403 0.2857143
## 610 1.5325570 7.0 0.6161471 0.4452403 0.2857143
## 611 1.5325570 7.0 0.6161471 0.4452403 0.2857143
## 612 1.5325570 7.0 0.6161471 0.4452403 0.2857143
## 613 1.5325570 7.0 0.6161471 0.4452403 0.2857143
## 614 1.5325570 7.0 0.6161471 0.4452403 0.2857143
## 615 1.5325570 7.0 0.6161471 0.4452403 0.2857143
## 616 1.5325570 7.0 0.6161471 0.4452403 0.2857143
## 617 1.5325570 7.0 0.6161471 0.4452403 0.2857143
## 618 1.5325570 7.0 0.6161471 0.4452403 0.2857143
## 619 1.5325570 7.0 0.6161471 0.4452403 0.2857143
## 620 1.5325570 7.0 0.6161471 0.4452403 0.2857143
## 621 1.5325570 7.0 0.6161471 0.4452403 0.2857143
## 622 1.5325570 7.0 0.6161471 0.4452403 0.2857143
## 623 1.5325570 7.0 0.6161471 0.4452403 0.2857143
## 624 1.5325570 7.0 0.6161471 0.4452403 0.2857143
## 625 1.5378489 8.0 0.5443405 0.3739477 0.1250000
## 626 1.5378489 8.0 0.5443405 0.3739477 0.1250000
## 627 1.5378489 8.0 0.5443405 0.3739477 0.1250000
## 628 1.5378489 8.0 0.5443405 0.3739477 0.1250000
## 629 1.5378489 8.0 0.5443405 0.3739477 0.1250000
## 630 1.5378489 8.0 0.5443405 0.3739477 0.1250000
## 631 1.5378489 8.0 0.5443405 0.3739477 0.1250000
## 632 1.5378489 8.0 0.5443405 0.3739477 0.1250000
## 633 1.5378489 8.0 0.5443405 0.3739477 0.1250000
## 634 1.5378489 8.0 0.5443405 0.3739477 0.1250000
## 635 1.5378489 8.0 0.5443405 0.3739477 0.1250000
## 636 1.5378489 8.0 0.5443405 0.3739477 0.1250000
## 637 1.5378489 8.0 0.5443405 0.3739477 0.1250000
## 638 1.5378489 8.0 0.5443405 0.3739477 0.1250000
## 639 1.5378489 8.0 0.5443405 0.3739477 0.1250000
## 640 1.5378489 8.0 0.5443405 0.3739477 0.1250000
## 641 1.5378489 8.0 0.5443405 0.3739477 0.1250000
## 642 1.5378489 8.0 0.5443405 0.3739477 0.1250000
## 643 1.5378489 8.0 0.5443405 0.3739477 0.1250000
## 644 1.5378489 8.0 0.5443405 0.3739477 0.1250000
## 645 1.5378489 8.0 0.5443405 0.3739477 0.1250000
## 646 1.5378489 8.0 0.5443405 0.3739477 0.1250000
## 647 1.5378489 8.0 0.5443405 0.3739477 0.1250000
## 648 1.5378489 8.0 0.5443405 0.3739477 0.1250000
## 649 1.2717353 5.0 0.8062622 0.6754098 0.0000000
## 650 1.2717353 5.0 0.8062622 0.6754098 0.0000000
## 651 1.2717353 5.0 0.8062622 0.6754098 0.0000000
## 652 1.2717353 5.0 0.8062622 0.6754098 0.0000000
## 653 1.2717353 5.0 0.8062622 0.6754098 0.0000000
## 654 1.2717353 5.0 0.8062622 0.6754098 0.0000000
## 655 1.2717353 5.0 0.8062622 0.6754098 0.0000000
## 656 1.2717353 5.0 0.8062622 0.6754098 0.0000000
## 657 1.2717353 5.0 0.8062622 0.6754098 0.0000000
## 658 1.2717353 5.0 0.8062622 0.6754098 0.0000000
## 659 1.2717353 5.0 0.8062622 0.6754098 0.0000000
## 660 1.2717353 5.0 0.8062622 0.6754098 0.0000000
## 661 1.2717353 5.0 0.8062622 0.6754098 0.0000000
## 662 1.2717353 5.0 0.8062622 0.6754098 0.0000000
## 663 1.2717353 5.0 0.8062622 0.6754098 0.0000000
## 664 1.2717353 5.0 0.8062622 0.6754098 0.0000000
## 665 1.2717353 5.0 0.8062622 0.6754098 0.0000000
## 666 1.2717353 5.0 0.8062622 0.6754098 0.0000000
## 667 1.2717353 5.0 0.8062622 0.6754098 0.0000000
## 668 1.2717353 5.0 0.8062622 0.6754098 0.0000000
## 669 1.2717353 5.0 0.8062622 0.6754098 0.0000000
## 670 1.2717353 5.0 0.8062622 0.6754098 0.0000000
## 671 1.2717353 5.0 0.8062622 0.6754098 0.0000000
## 672 1.2717353 5.0 0.8062622 0.6754098 0.0000000
## 673 1.5711195 6.5 0.5964585 0.4249668 0.5000000
## 674 1.5711195 6.5 0.5964585 0.4249668 0.5000000
## 675 1.5711195 6.5 0.5964585 0.4249668 0.5000000
## 676 1.5711195 6.5 0.5964585 0.4249668 0.5000000
## 677 1.5711195 6.5 0.5964585 0.4249668 0.5000000
## 678 1.5711195 6.5 0.5964585 0.4249668 0.5000000
## 679 1.5711195 6.5 0.5964585 0.4249668 0.5000000
## 680 1.5711195 6.5 0.5964585 0.4249668 0.5000000
## 681 1.5711195 6.5 0.5964585 0.4249668 0.5000000
## 682 1.5711195 6.5 0.5964585 0.4249668 0.5000000
## 683 1.5711195 6.5 0.5964585 0.4249668 0.5000000
## 684 1.5711195 6.5 0.5964585 0.4249668 0.5000000
## 685 1.5711195 6.5 0.5964585 0.4249668 0.5000000
## 686 1.5711195 6.5 0.5964585 0.4249668 0.5000000
## 687 1.5711195 6.5 0.5964585 0.4249668 0.5000000
## 688 1.5711195 6.5 0.5964585 0.4249668 0.5000000
## 689 1.5711195 6.5 0.5964585 0.4249668 0.5000000
## 690 1.5711195 6.5 0.5964585 0.4249668 0.5000000
## 691 1.5711195 6.5 0.5964585 0.4249668 0.5000000
## 692 1.5711195 6.5 0.5964585 0.4249668 0.5000000
## 693 1.5711195 6.5 0.5964585 0.4249668 0.5000000
## 694 1.5711195 6.5 0.5964585 0.4249668 0.5000000
## 695 1.5711195 6.5 0.5964585 0.4249668 0.5000000
## 696 1.5711195 6.5 0.5964585 0.4249668 0.5000000
## 697 0.9613777 3.5 0.7674121 0.6226024 0.5000000
## 698 0.9613777 3.5 0.7674121 0.6226024 0.5000000
## 699 0.9613777 3.5 0.7674121 0.6226024 0.5000000
## 700 0.9613777 3.5 0.7674121 0.6226024 0.5000000
## 701 0.9613777 3.5 0.7674121 0.6226024 0.5000000
## 702 0.9613777 3.5 0.7674121 0.6226024 0.5000000
## 703 0.9613777 3.5 0.7674121 0.6226024 0.5000000
## 704 0.9613777 3.5 0.7674121 0.6226024 0.5000000
## 705 0.9613777 3.5 0.7674121 0.6226024 0.5000000
## 706 0.9613777 3.5 0.7674121 0.6226024 0.5000000
## 707 0.9613777 3.5 0.7674121 0.6226024 0.5000000
## 708 0.9613777 3.5 0.7674121 0.6226024 0.5000000
## 709 0.9613777 3.5 0.7674121 0.6226024 0.5000000
## 710 0.9613777 3.5 0.7674121 0.6226024 0.5000000
## 711 0.9613777 3.5 0.7674121 0.6226024 0.5000000
## 712 0.9613777 3.5 0.7674121 0.6226024 0.5000000
## 713 0.9613777 3.5 0.7674121 0.6226024 0.5000000
## 714 0.9613777 3.5 0.7674121 0.6226024 0.5000000
## 715 0.9613777 3.5 0.7674121 0.6226024 0.5000000
## 716 0.9613777 3.5 0.7674121 0.6226024 0.5000000
## 717 0.9613777 3.5 0.7674121 0.6226024 0.5000000
## 718 0.9613777 3.5 0.7674121 0.6226024 0.5000000
## 719 0.9613777 3.5 0.7674121 0.6226024 0.5000000
## 720 0.9613777 3.5 0.7674121 0.6226024 0.5000000
## 721 1.3870793 5.5 0.6086957 0.4375000 0.6000000
## 722 1.3870793 5.5 0.6086957 0.4375000 0.6000000
## 723 1.3870793 5.5 0.6086957 0.4375000 0.6000000
## 724 1.3870793 5.5 0.6086957 0.4375000 0.6000000
## 725 1.3870793 5.5 0.6086957 0.4375000 0.6000000
## 726 1.3870793 5.5 0.6086957 0.4375000 0.6000000
## 727 1.3870793 5.5 0.6086957 0.4375000 0.6000000
## 728 1.3870793 5.5 0.6086957 0.4375000 0.6000000
## 729 1.3870793 5.5 0.6086957 0.4375000 0.6000000
## 730 1.3870793 5.5 0.6086957 0.4375000 0.6000000
## 731 1.3870793 5.5 0.6086957 0.4375000 0.6000000
## 732 1.3870793 5.5 0.6086957 0.4375000 0.6000000
## 733 1.3870793 5.5 0.6086957 0.4375000 0.6000000
## 734 1.3870793 5.5 0.6086957 0.4375000 0.6000000
## 735 1.3870793 5.5 0.6086957 0.4375000 0.6000000
## 736 1.3870793 5.5 0.6086957 0.4375000 0.6000000
## 737 1.3870793 5.5 0.6086957 0.4375000 0.6000000
## 738 1.3870793 5.5 0.6086957 0.4375000 0.6000000
## 739 1.3870793 5.5 0.6086957 0.4375000 0.6000000
## 740 1.3870793 5.5 0.6086957 0.4375000 0.6000000
## 741 1.3870793 5.5 0.6086957 0.4375000 0.6000000
## 742 1.3870793 5.5 0.6086957 0.4375000 0.6000000
## 743 1.3870793 5.5 0.6086957 0.4375000 0.6000000
## 744 1.3870793 5.5 0.6086957 0.4375000 0.6000000
## 745 0.9302665 3.5 0.6133333 0.4423077 0.0000000
## 746 0.9302665 3.5 0.6133333 0.4423077 0.0000000
## 747 0.9302665 3.5 0.6133333 0.4423077 0.0000000
## 748 0.9302665 3.5 0.6133333 0.4423077 0.0000000
## 749 0.9302665 3.5 0.6133333 0.4423077 0.0000000
## 750 0.9302665 3.5 0.6133333 0.4423077 0.0000000
## 751 0.9302665 3.5 0.6133333 0.4423077 0.0000000
## 752 0.9302665 3.5 0.6133333 0.4423077 0.0000000
## 753 0.9302665 3.5 0.6133333 0.4423077 0.0000000
## 754 0.9302665 3.5 0.6133333 0.4423077 0.0000000
## 755 0.9302665 3.5 0.6133333 0.4423077 0.0000000
## 756 0.9302665 3.5 0.6133333 0.4423077 0.0000000
## 757 0.9302665 3.5 0.6133333 0.4423077 0.0000000
## 758 0.9302665 3.5 0.6133333 0.4423077 0.0000000
## 759 0.9302665 3.5 0.6133333 0.4423077 0.0000000
## 760 0.9302665 3.5 0.6133333 0.4423077 0.0000000
## 761 0.9302665 3.5 0.6133333 0.4423077 0.0000000
## 762 0.9302665 3.5 0.6133333 0.4423077 0.0000000
## 763 0.9302665 3.5 0.6133333 0.4423077 0.0000000
## 764 0.9302665 3.5 0.6133333 0.4423077 0.0000000
## 765 0.9302665 3.5 0.6133333 0.4423077 0.0000000
## 766 0.9302665 3.5 0.6133333 0.4423077 0.0000000
## 767 0.9302665 3.5 0.6133333 0.4423077 0.0000000
## 768 0.9302665 3.5 0.6133333 0.4423077 0.0000000
## 769 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 770 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 771 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 772 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 773 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 774 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 775 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 776 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 777 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 778 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 779 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 780 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 781 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 782 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 783 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 784 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 785 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 786 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 787 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 788 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 789 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 790 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 791 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 792 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 793 1.7576182 8.0 0.6485050 0.4798427 0.0000000
## 794 1.7576182 8.0 0.6485050 0.4798427 0.0000000
## 795 1.7576182 8.0 0.6485050 0.4798427 0.0000000
## 796 1.7576182 8.0 0.6485050 0.4798427 0.0000000
## 797 1.7576182 8.0 0.6485050 0.4798427 0.0000000
## 798 1.7576182 8.0 0.6485050 0.4798427 0.0000000
## 799 1.7576182 8.0 0.6485050 0.4798427 0.0000000
## 800 1.7576182 8.0 0.6485050 0.4798427 0.0000000
## 801 1.7576182 8.0 0.6485050 0.4798427 0.0000000
## 802 1.7576182 8.0 0.6485050 0.4798427 0.0000000
## 803 1.7576182 8.0 0.6485050 0.4798427 0.0000000
## 804 1.7576182 8.0 0.6485050 0.4798427 0.0000000
## 805 1.7576182 8.0 0.6485050 0.4798427 0.0000000
## 806 1.7576182 8.0 0.6485050 0.4798427 0.0000000
## 807 1.7576182 8.0 0.6485050 0.4798427 0.0000000
## 808 1.7576182 8.0 0.6485050 0.4798427 0.0000000
## 809 1.7576182 8.0 0.6485050 0.4798427 0.0000000
## 810 1.7576182 8.0 0.6485050 0.4798427 0.0000000
## 811 1.7576182 8.0 0.6485050 0.4798427 0.0000000
## 812 1.7576182 8.0 0.6485050 0.4798427 0.0000000
## 813 1.7576182 8.0 0.6485050 0.4798427 0.0000000
## 814 1.7576182 8.0 0.6485050 0.4798427 0.0000000
## 815 1.7576182 8.0 0.6485050 0.4798427 0.0000000
## 816 1.7576182 8.0 0.6485050 0.4798427 0.0000000
## 817 1.6208829 7.5 0.5405548 0.3703838 0.1428571
## 818 1.6208829 7.5 0.5405548 0.3703838 0.1428571
## 819 1.6208829 7.5 0.5405548 0.3703838 0.1428571
## 820 1.6208829 7.5 0.5405548 0.3703838 0.1428571
## 821 1.6208829 7.5 0.5405548 0.3703838 0.1428571
## 822 1.6208829 7.5 0.5405548 0.3703838 0.1428571
## 823 1.6208829 7.5 0.5405548 0.3703838 0.1428571
## 824 1.6208829 7.5 0.5405548 0.3703838 0.1428571
## 825 1.6208829 7.5 0.5405548 0.3703838 0.1428571
## 826 1.6208829 7.5 0.5405548 0.3703838 0.1428571
## 827 1.6208829 7.5 0.5405548 0.3703838 0.1428571
## 828 1.6208829 7.5 0.5405548 0.3703838 0.1428571
## 829 1.6208829 7.5 0.5405548 0.3703838 0.1428571
## 830 1.6208829 7.5 0.5405548 0.3703838 0.1428571
## 831 1.6208829 7.5 0.5405548 0.3703838 0.1428571
## 832 1.6208829 7.5 0.5405548 0.3703838 0.1428571
## 833 1.6208829 7.5 0.5405548 0.3703838 0.1428571
## 834 1.6208829 7.5 0.5405548 0.3703838 0.1428571
## 835 1.6208829 7.5 0.5405548 0.3703838 0.1428571
## 836 1.6208829 7.5 0.5405548 0.3703838 0.1428571
## 837 1.6208829 7.5 0.5405548 0.3703838 0.1428571
## 838 1.6208829 7.5 0.5405548 0.3703838 0.1428571
## 839 1.6208829 7.5 0.5405548 0.3703838 0.1428571
## 840 1.6208829 7.5 0.5405548 0.3703838 0.1428571
## 841 1.5861251 6.0 0.8562784 0.7486772 0.0000000
## 842 1.5861251 6.0 0.8562784 0.7486772 0.0000000
## 843 1.5861251 6.0 0.8562784 0.7486772 0.0000000
## 844 1.5861251 6.0 0.8562784 0.7486772 0.0000000
## 845 1.5861251 6.0 0.8562784 0.7486772 0.0000000
## 846 1.5861251 6.0 0.8562784 0.7486772 0.0000000
## 847 1.5861251 6.0 0.8562784 0.7486772 0.0000000
## 848 1.5861251 6.0 0.8562784 0.7486772 0.0000000
## 849 1.5861251 6.0 0.8562784 0.7486772 0.0000000
## 850 1.5861251 6.0 0.8562784 0.7486772 0.0000000
## 851 1.5861251 6.0 0.8562784 0.7486772 0.0000000
## 852 1.5861251 6.0 0.8562784 0.7486772 0.0000000
## 853 1.5861251 6.0 0.8562784 0.7486772 0.0000000
## 854 1.5861251 6.0 0.8562784 0.7486772 0.0000000
## 855 1.5861251 6.0 0.8562784 0.7486772 0.0000000
## 856 1.5861251 6.0 0.8562784 0.7486772 0.0000000
## 857 1.5861251 6.0 0.8562784 0.7486772 0.0000000
## 858 1.5861251 6.0 0.8562784 0.7486772 0.0000000
## 859 1.5861251 6.0 0.8562784 0.7486772 0.0000000
## 860 1.5861251 6.0 0.8562784 0.7486772 0.0000000
## 861 1.5861251 6.0 0.8562784 0.7486772 0.0000000
## 862 1.5861251 6.0 0.8562784 0.7486772 0.0000000
## 863 1.5861251 6.0 0.8562784 0.7486772 0.0000000
## 864 1.5861251 6.0 0.8562784 0.7486772 0.0000000
## 865 1.6705149 7.5 0.5076640 0.3401808 0.1428571
## 866 1.6705149 7.5 0.5076640 0.3401808 0.1428571
## 867 1.6705149 7.5 0.5076640 0.3401808 0.1428571
## 868 1.6705149 7.5 0.5076640 0.3401808 0.1428571
## 869 1.6705149 7.5 0.5076640 0.3401808 0.1428571
## 870 1.6705149 7.5 0.5076640 0.3401808 0.1428571
## 871 1.6705149 7.5 0.5076640 0.3401808 0.1428571
## 872 1.6705149 7.5 0.5076640 0.3401808 0.1428571
## 873 1.6705149 7.5 0.5076640 0.3401808 0.1428571
## 874 1.6705149 7.5 0.5076640 0.3401808 0.1428571
## 875 1.6705149 7.5 0.5076640 0.3401808 0.1428571
## 876 1.6705149 7.5 0.5076640 0.3401808 0.1428571
## 877 1.6705149 7.5 0.5076640 0.3401808 0.1428571
## 878 1.6705149 7.5 0.5076640 0.3401808 0.1428571
## 879 1.6705149 7.5 0.5076640 0.3401808 0.1428571
## 880 1.6705149 7.5 0.5076640 0.3401808 0.1428571
## 881 1.6705149 7.5 0.5076640 0.3401808 0.1428571
## 882 1.6705149 7.5 0.5076640 0.3401808 0.1428571
## 883 1.6705149 7.5 0.5076640 0.3401808 0.1428571
## 884 1.6705149 7.5 0.5076640 0.3401808 0.1428571
## 885 1.6705149 7.5 0.5076640 0.3401808 0.1428571
## 886 1.6705149 7.5 0.5076640 0.3401808 0.1428571
## 887 1.6705149 7.5 0.5076640 0.3401808 0.1428571
## 888 1.6705149 7.5 0.5076640 0.3401808 0.1428571
## 889 1.1807457 5.0 0.8075314 0.6771930 0.0000000
## 890 1.1807457 5.0 0.8075314 0.6771930 0.0000000
## 891 1.1807457 5.0 0.8075314 0.6771930 0.0000000
## 892 1.1807457 5.0 0.8075314 0.6771930 0.0000000
## 893 1.1807457 5.0 0.8075314 0.6771930 0.0000000
## 894 1.1807457 5.0 0.8075314 0.6771930 0.0000000
## 895 1.1807457 5.0 0.8075314 0.6771930 0.0000000
## 896 1.1807457 5.0 0.8075314 0.6771930 0.0000000
## 897 1.1807457 5.0 0.8075314 0.6771930 0.0000000
## 898 1.1807457 5.0 0.8075314 0.6771930 0.0000000
## 899 1.1807457 5.0 0.8075314 0.6771930 0.0000000
## 900 1.1807457 5.0 0.8075314 0.6771930 0.0000000
## 901 1.1807457 5.0 0.8075314 0.6771930 0.0000000
## 902 1.1807457 5.0 0.8075314 0.6771930 0.0000000
## 903 1.1807457 5.0 0.8075314 0.6771930 0.0000000
## 904 1.1807457 5.0 0.8075314 0.6771930 0.0000000
## 905 1.1807457 5.0 0.8075314 0.6771930 0.0000000
## 906 1.1807457 5.0 0.8075314 0.6771930 0.0000000
## 907 1.1807457 5.0 0.8075314 0.6771930 0.0000000
## 908 1.1807457 5.0 0.8075314 0.6771930 0.0000000
## 909 1.1807457 5.0 0.8075314 0.6771930 0.0000000
## 910 1.1807457 5.0 0.8075314 0.6771930 0.0000000
## 911 1.1807457 5.0 0.8075314 0.6771930 0.0000000
## 912 1.1807457 5.0 0.8075314 0.6771930 0.0000000
## 913 1.5071598 6.5 0.8093303 0.6797269 0.2000000
## 914 1.5071598 6.5 0.8093303 0.6797269 0.2000000
## 915 1.5071598 6.5 0.8093303 0.6797269 0.2000000
## 916 1.5071598 6.5 0.8093303 0.6797269 0.2000000
## 917 1.5071598 6.5 0.8093303 0.6797269 0.2000000
## 918 1.5071598 6.5 0.8093303 0.6797269 0.2000000
## 919 1.5071598 6.5 0.8093303 0.6797269 0.2000000
## 920 1.5071598 6.5 0.8093303 0.6797269 0.2000000
## 921 1.5071598 6.5 0.8093303 0.6797269 0.2000000
## 922 1.5071598 6.5 0.8093303 0.6797269 0.2000000
## 923 1.5071598 6.5 0.8093303 0.6797269 0.2000000
## 924 1.5071598 6.5 0.8093303 0.6797269 0.2000000
## 925 1.5071598 6.5 0.8093303 0.6797269 0.2000000
## 926 1.5071598 6.5 0.8093303 0.6797269 0.2000000
## 927 1.5071598 6.5 0.8093303 0.6797269 0.2000000
## 928 1.5071598 6.5 0.8093303 0.6797269 0.2000000
## 929 1.5071598 6.5 0.8093303 0.6797269 0.2000000
## 930 1.5071598 6.5 0.8093303 0.6797269 0.2000000
## 931 1.5071598 6.5 0.8093303 0.6797269 0.2000000
## 932 1.5071598 6.5 0.8093303 0.6797269 0.2000000
## 933 1.5071598 6.5 0.8093303 0.6797269 0.2000000
## 934 1.5071598 6.5 0.8093303 0.6797269 0.2000000
## 935 1.5071598 6.5 0.8093303 0.6797269 0.2000000
## 936 1.5071598 6.5 0.8093303 0.6797269 0.2000000
## 937 0.9391687 5.0 0.9203269 0.8524125 0.0000000
## 938 0.9391687 5.0 0.9203269 0.8524125 0.0000000
## 939 0.9391687 5.0 0.9203269 0.8524125 0.0000000
## 940 0.9391687 5.0 0.9203269 0.8524125 0.0000000
## 941 0.9391687 5.0 0.9203269 0.8524125 0.0000000
## 942 0.9391687 5.0 0.9203269 0.8524125 0.0000000
## 943 0.9391687 5.0 0.9203269 0.8524125 0.0000000
## 944 0.9391687 5.0 0.9203269 0.8524125 0.0000000
## 945 0.9391687 5.0 0.9203269 0.8524125 0.0000000
## 946 0.9391687 5.0 0.9203269 0.8524125 0.0000000
## 947 0.9391687 5.0 0.9203269 0.8524125 0.0000000
## 948 0.9391687 5.0 0.9203269 0.8524125 0.0000000
## 949 0.9391687 5.0 0.9203269 0.8524125 0.0000000
## 950 0.9391687 5.0 0.9203269 0.8524125 0.0000000
## 951 0.9391687 5.0 0.9203269 0.8524125 0.0000000
## 952 0.9391687 5.0 0.9203269 0.8524125 0.0000000
## 953 0.9391687 5.0 0.9203269 0.8524125 0.0000000
## 954 0.9391687 5.0 0.9203269 0.8524125 0.0000000
## 955 0.9391687 5.0 0.9203269 0.8524125 0.0000000
## 956 0.9391687 5.0 0.9203269 0.8524125 0.0000000
## 957 0.9391687 5.0 0.9203269 0.8524125 0.0000000
## 958 0.9391687 5.0 0.9203269 0.8524125 0.0000000
## 959 0.9391687 5.0 0.9203269 0.8524125 0.0000000
## 960 0.9391687 5.0 0.9203269 0.8524125 0.0000000
## 961 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 962 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 963 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 964 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 965 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 966 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 967 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 968 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 969 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 970 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 971 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 972 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 973 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 974 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 975 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 976 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 977 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 978 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 979 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 980 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 981 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 982 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 983 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 984 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 985 1.5540186 8.0 0.4775502 0.3136722 0.2500000
## 986 1.5540186 8.0 0.4775502 0.3136722 0.2500000
## 987 1.5540186 8.0 0.4775502 0.3136722 0.2500000
## 988 1.5540186 8.0 0.4775502 0.3136722 0.2500000
## 989 1.5540186 8.0 0.4775502 0.3136722 0.2500000
## 990 1.5540186 8.0 0.4775502 0.3136722 0.2500000
## 991 1.5540186 8.0 0.4775502 0.3136722 0.2500000
## 992 1.5540186 8.0 0.4775502 0.3136722 0.2500000
## 993 1.5540186 8.0 0.4775502 0.3136722 0.2500000
## 994 1.5540186 8.0 0.4775502 0.3136722 0.2500000
## 995 1.5540186 8.0 0.4775502 0.3136722 0.2500000
## 996 1.5540186 8.0 0.4775502 0.3136722 0.2500000
## 997 1.5540186 8.0 0.4775502 0.3136722 0.2500000
## 998 1.5540186 8.0 0.4775502 0.3136722 0.2500000
## 999 1.5540186 8.0 0.4775502 0.3136722 0.2500000
## 1000 1.5540186 8.0 0.4775502 0.3136722 0.2500000
## 1001 1.5540186 8.0 0.4775502 0.3136722 0.2500000
## 1002 1.5540186 8.0 0.4775502 0.3136722 0.2500000
## 1003 1.5540186 8.0 0.4775502 0.3136722 0.2500000
## 1004 1.5540186 8.0 0.4775502 0.3136722 0.2500000
## 1005 1.5540186 8.0 0.4775502 0.3136722 0.2500000
## 1006 1.5540186 8.0 0.4775502 0.3136722 0.2500000
## 1007 1.5540186 8.0 0.4775502 0.3136722 0.2500000
## 1008 1.5540186 8.0 0.4775502 0.3136722 0.2500000
## 1009 1.5213817 8.5 0.6802785 0.5154712 0.1250000
## 1010 1.5213817 8.5 0.6802785 0.5154712 0.1250000
## 1011 1.5213817 8.5 0.6802785 0.5154712 0.1250000
## 1012 1.5213817 8.5 0.6802785 0.5154712 0.1250000
## 1013 1.5213817 8.5 0.6802785 0.5154712 0.1250000
## 1014 1.5213817 8.5 0.6802785 0.5154712 0.1250000
## 1015 1.5213817 8.5 0.6802785 0.5154712 0.1250000
## 1016 1.5213817 8.5 0.6802785 0.5154712 0.1250000
## 1017 1.5213817 8.5 0.6802785 0.5154712 0.1250000
## 1018 1.5213817 8.5 0.6802785 0.5154712 0.1250000
## 1019 1.5213817 8.5 0.6802785 0.5154712 0.1250000
## 1020 1.5213817 8.5 0.6802785 0.5154712 0.1250000
## 1021 1.5213817 8.5 0.6802785 0.5154712 0.1250000
## 1022 1.5213817 8.5 0.6802785 0.5154712 0.1250000
## 1023 1.5213817 8.5 0.6802785 0.5154712 0.1250000
## 1024 1.5213817 8.5 0.6802785 0.5154712 0.1250000
## 1025 1.5213817 8.5 0.6802785 0.5154712 0.1250000
## 1026 1.5213817 8.5 0.6802785 0.5154712 0.1250000
## 1027 1.5213817 8.5 0.6802785 0.5154712 0.1250000
## 1028 1.5213817 8.5 0.6802785 0.5154712 0.1250000
## 1029 1.5213817 8.5 0.6802785 0.5154712 0.1250000
## 1030 1.5213817 8.5 0.6802785 0.5154712 0.1250000
## 1031 1.5213817 8.5 0.6802785 0.5154712 0.1250000
## 1032 1.5213817 8.5 0.6802785 0.5154712 0.1250000
## 1033 1.7632593 7.0 0.4519279 0.2919295 0.0000000
## 1034 1.7632593 7.0 0.4519279 0.2919295 0.0000000
## 1035 1.7632593 7.0 0.4519279 0.2919295 0.0000000
## 1036 1.7632593 7.0 0.4519279 0.2919295 0.0000000
## 1037 1.7632593 7.0 0.4519279 0.2919295 0.0000000
## 1038 1.7632593 7.0 0.4519279 0.2919295 0.0000000
## 1039 1.7632593 7.0 0.4519279 0.2919295 0.0000000
## 1040 1.7632593 7.0 0.4519279 0.2919295 0.0000000
## 1041 1.7632593 7.0 0.4519279 0.2919295 0.0000000
## 1042 1.7632593 7.0 0.4519279 0.2919295 0.0000000
## 1043 1.7632593 7.0 0.4519279 0.2919295 0.0000000
## 1044 1.7632593 7.0 0.4519279 0.2919295 0.0000000
## 1045 1.7632593 7.0 0.4519279 0.2919295 0.0000000
## 1046 1.7632593 7.0 0.4519279 0.2919295 0.0000000
## 1047 1.7632593 7.0 0.4519279 0.2919295 0.0000000
## 1048 1.7632593 7.0 0.4519279 0.2919295 0.0000000
## 1049 1.7632593 7.0 0.4519279 0.2919295 0.0000000
## 1050 1.7632593 7.0 0.4519279 0.2919295 0.0000000
## 1051 1.7632593 7.0 0.4519279 0.2919295 0.0000000
## 1052 1.7632593 7.0 0.4519279 0.2919295 0.0000000
## 1053 1.7632593 7.0 0.4519279 0.2919295 0.0000000
## 1054 1.7632593 7.0 0.4519279 0.2919295 0.0000000
## 1055 1.7632593 7.0 0.4519279 0.2919295 0.0000000
## 1056 1.7632593 7.0 0.4519279 0.2919295 0.0000000
## 1057 1.3837136 5.5 0.6129142 0.4418719 0.0000000
## 1058 1.3837136 5.5 0.6129142 0.4418719 0.0000000
## 1059 1.3837136 5.5 0.6129142 0.4418719 0.0000000
## 1060 1.3837136 5.5 0.6129142 0.4418719 0.0000000
## 1061 1.3837136 5.5 0.6129142 0.4418719 0.0000000
## 1062 1.3837136 5.5 0.6129142 0.4418719 0.0000000
## 1063 1.3837136 5.5 0.6129142 0.4418719 0.0000000
## 1064 1.3837136 5.5 0.6129142 0.4418719 0.0000000
## 1065 1.3837136 5.5 0.6129142 0.4418719 0.0000000
## 1066 1.3837136 5.5 0.6129142 0.4418719 0.0000000
## 1067 1.3837136 5.5 0.6129142 0.4418719 0.0000000
## 1068 1.3837136 5.5 0.6129142 0.4418719 0.0000000
## 1069 1.3837136 5.5 0.6129142 0.4418719 0.0000000
## 1070 1.3837136 5.5 0.6129142 0.4418719 0.0000000
## 1071 1.3837136 5.5 0.6129142 0.4418719 0.0000000
## 1072 1.3837136 5.5 0.6129142 0.4418719 0.0000000
## 1073 1.3837136 5.5 0.6129142 0.4418719 0.0000000
## 1074 1.3837136 5.5 0.6129142 0.4418719 0.0000000
## 1075 1.3837136 5.5 0.6129142 0.4418719 0.0000000
## 1076 1.3837136 5.5 0.6129142 0.4418719 0.0000000
## 1077 1.3837136 5.5 0.6129142 0.4418719 0.0000000
## 1078 1.3837136 5.5 0.6129142 0.4418719 0.0000000
## 1079 1.3837136 5.5 0.6129142 0.4418719 0.0000000
## 1080 1.3837136 5.5 0.6129142 0.4418719 0.0000000
## 1081 1.1906786 4.5 0.9314463 0.8716887 0.3333333
## 1082 1.1906786 4.5 0.9314463 0.8716887 0.3333333
## 1083 1.1906786 4.5 0.9314463 0.8716887 0.3333333
## 1084 1.1906786 4.5 0.9314463 0.8716887 0.3333333
## 1085 1.1906786 4.5 0.9314463 0.8716887 0.3333333
## 1086 1.1906786 4.5 0.9314463 0.8716887 0.3333333
## 1087 1.1906786 4.5 0.9314463 0.8716887 0.3333333
## 1088 1.1906786 4.5 0.9314463 0.8716887 0.3333333
## 1089 1.1906786 4.5 0.9314463 0.8716887 0.3333333
## 1090 1.1906786 4.5 0.9314463 0.8716887 0.3333333
## 1091 1.1906786 4.5 0.9314463 0.8716887 0.3333333
## 1092 1.1906786 4.5 0.9314463 0.8716887 0.3333333
## 1093 1.1906786 4.5 0.9314463 0.8716887 0.3333333
## 1094 1.1906786 4.5 0.9314463 0.8716887 0.3333333
## 1095 1.1906786 4.5 0.9314463 0.8716887 0.3333333
## 1096 1.1906786 4.5 0.9314463 0.8716887 0.3333333
## 1097 1.1906786 4.5 0.9314463 0.8716887 0.3333333
## 1098 1.1906786 4.5 0.9314463 0.8716887 0.3333333
## 1099 1.1906786 4.5 0.9314463 0.8716887 0.3333333
## 1100 1.1906786 4.5 0.9314463 0.8716887 0.3333333
## 1101 1.1906786 4.5 0.9314463 0.8716887 0.3333333
## 1102 1.1906786 4.5 0.9314463 0.8716887 0.3333333
## 1103 1.1906786 4.5 0.9314463 0.8716887 0.3333333
## 1104 1.1906786 4.5 0.9314463 0.8716887 0.3333333
## 1105 0.5580146 4.0 0.8940736 0.8084387 0.0000000
## 1106 0.5580146 4.0 0.8940736 0.8084387 0.0000000
## 1107 0.5580146 4.0 0.8940736 0.8084387 0.0000000
## 1108 0.5580146 4.0 0.8940736 0.8084387 0.0000000
## 1109 0.5580146 4.0 0.8940736 0.8084387 0.0000000
## 1110 0.5580146 4.0 0.8940736 0.8084387 0.0000000
## 1111 0.5580146 4.0 0.8940736 0.8084387 0.0000000
## 1112 0.5580146 4.0 0.8940736 0.8084387 0.0000000
## 1113 0.5580146 4.0 0.8940736 0.8084387 0.0000000
## 1114 0.5580146 4.0 0.8940736 0.8084387 0.0000000
## 1115 0.5580146 4.0 0.8940736 0.8084387 0.0000000
## 1116 0.5580146 4.0 0.8940736 0.8084387 0.0000000
## 1117 0.5580146 4.0 0.8940736 0.8084387 0.0000000
## 1118 0.5580146 4.0 0.8940736 0.8084387 0.0000000
## 1119 0.5580146 4.0 0.8940736 0.8084387 0.0000000
## 1120 0.5580146 4.0 0.8940736 0.8084387 0.0000000
## 1121 0.5580146 4.0 0.8940736 0.8084387 0.0000000
## 1122 0.5580146 4.0 0.8940736 0.8084387 0.0000000
## 1123 0.5580146 4.0 0.8940736 0.8084387 0.0000000
## 1124 0.5580146 4.0 0.8940736 0.8084387 0.0000000
## 1125 0.5580146 4.0 0.8940736 0.8084387 0.0000000
## 1126 0.5580146 4.0 0.8940736 0.8084387 0.0000000
## 1127 0.5580146 4.0 0.8940736 0.8084387 0.0000000
## 1128 0.5580146 4.0 0.8940736 0.8084387 0.0000000
## 1129 0.6573424 5.0 0.9461440 0.8977925 0.0000000
## 1130 0.6573424 5.0 0.9461440 0.8977925 0.0000000
## 1131 0.6573424 5.0 0.9461440 0.8977925 0.0000000
## 1132 0.6573424 5.0 0.9461440 0.8977925 0.0000000
## 1133 0.6573424 5.0 0.9461440 0.8977925 0.0000000
## 1134 0.6573424 5.0 0.9461440 0.8977925 0.0000000
## 1135 0.6573424 5.0 0.9461440 0.8977925 0.0000000
## 1136 0.6573424 5.0 0.9461440 0.8977925 0.0000000
## 1137 0.6573424 5.0 0.9461440 0.8977925 0.0000000
## 1138 0.6573424 5.0 0.9461440 0.8977925 0.0000000
## 1139 0.6573424 5.0 0.9461440 0.8977925 0.0000000
## 1140 0.6573424 5.0 0.9461440 0.8977925 0.0000000
## 1141 0.6573424 5.0 0.9461440 0.8977925 0.0000000
## 1142 0.6573424 5.0 0.9461440 0.8977925 0.0000000
## 1143 0.6573424 5.0 0.9461440 0.8977925 0.0000000
## 1144 0.6573424 5.0 0.9461440 0.8977925 0.0000000
## 1145 0.6573424 5.0 0.9461440 0.8977925 0.0000000
## 1146 0.6573424 5.0 0.9461440 0.8977925 0.0000000
## 1147 0.6573424 5.0 0.9461440 0.8977925 0.0000000
## 1148 0.6573424 5.0 0.9461440 0.8977925 0.0000000
## 1149 0.6573424 5.0 0.9461440 0.8977925 0.0000000
## 1150 0.6573424 5.0 0.9461440 0.8977925 0.0000000
## 1151 0.6573424 5.0 0.9461440 0.8977925 0.0000000
## 1152 0.6573424 5.0 0.9461440 0.8977925 0.0000000
## 1153 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1154 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1155 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1156 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1157 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1158 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1159 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1160 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1161 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1162 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1163 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1164 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1165 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1166 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1167 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1168 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1169 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1170 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1171 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1172 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1173 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1174 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1175 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1176 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1177 1.7881218 8.5 0.4851643 0.3202752 0.1250000
## 1178 1.7881218 8.5 0.4851643 0.3202752 0.1250000
## 1179 1.7881218 8.5 0.4851643 0.3202752 0.1250000
## 1180 1.7881218 8.5 0.4851643 0.3202752 0.1250000
## 1181 1.7881218 8.5 0.4851643 0.3202752 0.1250000
## 1182 1.7881218 8.5 0.4851643 0.3202752 0.1250000
## 1183 1.7881218 8.5 0.4851643 0.3202752 0.1250000
## 1184 1.7881218 8.5 0.4851643 0.3202752 0.1250000
## 1185 1.7881218 8.5 0.4851643 0.3202752 0.1250000
## 1186 1.7881218 8.5 0.4851643 0.3202752 0.1250000
## 1187 1.7881218 8.5 0.4851643 0.3202752 0.1250000
## 1188 1.7881218 8.5 0.4851643 0.3202752 0.1250000
## 1189 1.7881218 8.5 0.4851643 0.3202752 0.1250000
## 1190 1.7881218 8.5 0.4851643 0.3202752 0.1250000
## 1191 1.7881218 8.5 0.4851643 0.3202752 0.1250000
## 1192 1.7881218 8.5 0.4851643 0.3202752 0.1250000
## 1193 1.7881218 8.5 0.4851643 0.3202752 0.1250000
## 1194 1.7881218 8.5 0.4851643 0.3202752 0.1250000
## 1195 1.7881218 8.5 0.4851643 0.3202752 0.1250000
## 1196 1.7881218 8.5 0.4851643 0.3202752 0.1250000
## 1197 1.7881218 8.5 0.4851643 0.3202752 0.1250000
## 1198 1.7881218 8.5 0.4851643 0.3202752 0.1250000
## 1199 1.7881218 8.5 0.4851643 0.3202752 0.1250000
## 1200 1.7881218 8.5 0.4851643 0.3202752 0.1250000
## 1201 1.4483385 7.0 0.6127187 0.4416686 0.0000000
## 1202 1.4483385 7.0 0.6127187 0.4416686 0.0000000
## 1203 1.4483385 7.0 0.6127187 0.4416686 0.0000000
## 1204 1.4483385 7.0 0.6127187 0.4416686 0.0000000
## 1205 1.4483385 7.0 0.6127187 0.4416686 0.0000000
## 1206 1.4483385 7.0 0.6127187 0.4416686 0.0000000
## 1207 1.4483385 7.0 0.6127187 0.4416686 0.0000000
## 1208 1.4483385 7.0 0.6127187 0.4416686 0.0000000
## 1209 1.4483385 7.0 0.6127187 0.4416686 0.0000000
## 1210 1.4483385 7.0 0.6127187 0.4416686 0.0000000
## 1211 1.4483385 7.0 0.6127187 0.4416686 0.0000000
## 1212 1.4483385 7.0 0.6127187 0.4416686 0.0000000
## 1213 1.4483385 7.0 0.6127187 0.4416686 0.0000000
## 1214 1.4483385 7.0 0.6127187 0.4416686 0.0000000
## 1215 1.4483385 7.0 0.6127187 0.4416686 0.0000000
## 1216 1.4483385 7.0 0.6127187 0.4416686 0.0000000
## 1217 1.4483385 7.0 0.6127187 0.4416686 0.0000000
## 1218 1.4483385 7.0 0.6127187 0.4416686 0.0000000
## 1219 1.4483385 7.0 0.6127187 0.4416686 0.0000000
## 1220 1.4483385 7.0 0.6127187 0.4416686 0.0000000
## 1221 1.4483385 7.0 0.6127187 0.4416686 0.0000000
## 1222 1.4483385 7.0 0.6127187 0.4416686 0.0000000
## 1223 1.4483385 7.0 0.6127187 0.4416686 0.0000000
## 1224 1.4483385 7.0 0.6127187 0.4416686 0.0000000
## 1225 1.6825243 7.0 0.5191233 0.3505514 0.1666667
## 1226 1.6825243 7.0 0.5191233 0.3505514 0.1666667
## 1227 1.6825243 7.0 0.5191233 0.3505514 0.1666667
## 1228 1.6825243 7.0 0.5191233 0.3505514 0.1666667
## 1229 1.6825243 7.0 0.5191233 0.3505514 0.1666667
## 1230 1.6825243 7.0 0.5191233 0.3505514 0.1666667
## 1231 1.6825243 7.0 0.5191233 0.3505514 0.1666667
## 1232 1.6825243 7.0 0.5191233 0.3505514 0.1666667
## 1233 1.6825243 7.0 0.5191233 0.3505514 0.1666667
## 1234 1.6825243 7.0 0.5191233 0.3505514 0.1666667
## 1235 1.6825243 7.0 0.5191233 0.3505514 0.1666667
## 1236 1.6825243 7.0 0.5191233 0.3505514 0.1666667
## 1237 1.6825243 7.0 0.5191233 0.3505514 0.1666667
## 1238 1.6825243 7.0 0.5191233 0.3505514 0.1666667
## 1239 1.6825243 7.0 0.5191233 0.3505514 0.1666667
## 1240 1.6825243 7.0 0.5191233 0.3505514 0.1666667
## 1241 1.6825243 7.0 0.5191233 0.3505514 0.1666667
## 1242 1.6825243 7.0 0.5191233 0.3505514 0.1666667
## 1243 1.6825243 7.0 0.5191233 0.3505514 0.1666667
## 1244 1.6825243 7.0 0.5191233 0.3505514 0.1666667
## 1245 1.6825243 7.0 0.5191233 0.3505514 0.1666667
## 1246 1.6825243 7.0 0.5191233 0.3505514 0.1666667
## 1247 1.6825243 7.0 0.5191233 0.3505514 0.1666667
## 1248 1.6825243 7.0 0.5191233 0.3505514 0.1666667
## 1249 1.1569293 4.0 0.7495992 0.5994872 0.3333333
## 1250 1.1569293 4.0 0.7495992 0.5994872 0.3333333
## 1251 1.1569293 4.0 0.7495992 0.5994872 0.3333333
## 1252 1.1569293 4.0 0.7495992 0.5994872 0.3333333
## 1253 1.1569293 4.0 0.7495992 0.5994872 0.3333333
## 1254 1.1569293 4.0 0.7495992 0.5994872 0.3333333
## 1255 1.1569293 4.0 0.7495992 0.5994872 0.3333333
## 1256 1.1569293 4.0 0.7495992 0.5994872 0.3333333
## 1257 1.1569293 4.0 0.7495992 0.5994872 0.3333333
## 1258 1.1569293 4.0 0.7495992 0.5994872 0.3333333
## 1259 1.1569293 4.0 0.7495992 0.5994872 0.3333333
## 1260 1.1569293 4.0 0.7495992 0.5994872 0.3333333
## 1261 1.1569293 4.0 0.7495992 0.5994872 0.3333333
## 1262 1.1569293 4.0 0.7495992 0.5994872 0.3333333
## 1263 1.1569293 4.0 0.7495992 0.5994872 0.3333333
## 1264 1.1569293 4.0 0.7495992 0.5994872 0.3333333
## 1265 1.1569293 4.0 0.7495992 0.5994872 0.3333333
## 1266 1.1569293 4.0 0.7495992 0.5994872 0.3333333
## 1267 1.1569293 4.0 0.7495992 0.5994872 0.3333333
## 1268 1.1569293 4.0 0.7495992 0.5994872 0.3333333
## 1269 1.1569293 4.0 0.7495992 0.5994872 0.3333333
## 1270 1.1569293 4.0 0.7495992 0.5994872 0.3333333
## 1271 1.1569293 4.0 0.7495992 0.5994872 0.3333333
## 1272 1.1569293 4.0 0.7495992 0.5994872 0.3333333
## 1273 1.4007946 5.5 0.8509009 0.7404939 0.0000000
## 1274 1.4007946 5.5 0.8509009 0.7404939 0.0000000
## 1275 1.4007946 5.5 0.8509009 0.7404939 0.0000000
## 1276 1.4007946 5.5 0.8509009 0.7404939 0.0000000
## 1277 1.4007946 5.5 0.8509009 0.7404939 0.0000000
## 1278 1.4007946 5.5 0.8509009 0.7404939 0.0000000
## 1279 1.4007946 5.5 0.8509009 0.7404939 0.0000000
## 1280 1.4007946 5.5 0.8509009 0.7404939 0.0000000
## 1281 1.4007946 5.5 0.8509009 0.7404939 0.0000000
## 1282 1.4007946 5.5 0.8509009 0.7404939 0.0000000
## 1283 1.4007946 5.5 0.8509009 0.7404939 0.0000000
## 1284 1.4007946 5.5 0.8509009 0.7404939 0.0000000
## 1285 1.4007946 5.5 0.8509009 0.7404939 0.0000000
## 1286 1.4007946 5.5 0.8509009 0.7404939 0.0000000
## 1287 1.4007946 5.5 0.8509009 0.7404939 0.0000000
## 1288 1.4007946 5.5 0.8509009 0.7404939 0.0000000
## 1289 1.4007946 5.5 0.8509009 0.7404939 0.0000000
## 1290 1.4007946 5.5 0.8509009 0.7404939 0.0000000
## 1291 1.4007946 5.5 0.8509009 0.7404939 0.0000000
## 1292 1.4007946 5.5 0.8509009 0.7404939 0.0000000
## 1293 1.4007946 5.5 0.8509009 0.7404939 0.0000000
## 1294 1.4007946 5.5 0.8509009 0.7404939 0.0000000
## 1295 1.4007946 5.5 0.8509009 0.7404939 0.0000000
## 1296 1.4007946 5.5 0.8509009 0.7404939 0.0000000
## 1297 0.6574145 4.0 0.8908058 0.8031107 0.0000000
## 1298 0.6574145 4.0 0.8908058 0.8031107 0.0000000
## 1299 0.6574145 4.0 0.8908058 0.8031107 0.0000000
## 1300 0.6574145 4.0 0.8908058 0.8031107 0.0000000
## 1301 0.6574145 4.0 0.8908058 0.8031107 0.0000000
## 1302 0.6574145 4.0 0.8908058 0.8031107 0.0000000
## 1303 0.6574145 4.0 0.8908058 0.8031107 0.0000000
## 1304 0.6574145 4.0 0.8908058 0.8031107 0.0000000
## 1305 0.6574145 4.0 0.8908058 0.8031107 0.0000000
## 1306 0.6574145 4.0 0.8908058 0.8031107 0.0000000
## 1307 0.6574145 4.0 0.8908058 0.8031107 0.0000000
## 1308 0.6574145 4.0 0.8908058 0.8031107 0.0000000
## 1309 0.6574145 4.0 0.8908058 0.8031107 0.0000000
## 1310 0.6574145 4.0 0.8908058 0.8031107 0.0000000
## 1311 0.6574145 4.0 0.8908058 0.8031107 0.0000000
## 1312 0.6574145 4.0 0.8908058 0.8031107 0.0000000
## 1313 0.6574145 4.0 0.8908058 0.8031107 0.0000000
## 1314 0.6574145 4.0 0.8908058 0.8031107 0.0000000
## 1315 0.6574145 4.0 0.8908058 0.8031107 0.0000000
## 1316 0.6574145 4.0 0.8908058 0.8031107 0.0000000
## 1317 0.6574145 4.0 0.8908058 0.8031107 0.0000000
## 1318 0.6574145 4.0 0.8908058 0.8031107 0.0000000
## 1319 0.6574145 4.0 0.8908058 0.8031107 0.0000000
## 1320 0.6574145 4.0 0.8908058 0.8031107 0.0000000
## 1321 0.7227886 4.0 0.9301829 0.8694784 0.0000000
## 1322 0.7227886 4.0 0.9301829 0.8694784 0.0000000
## 1323 0.7227886 4.0 0.9301829 0.8694784 0.0000000
## 1324 0.7227886 4.0 0.9301829 0.8694784 0.0000000
## 1325 0.7227886 4.0 0.9301829 0.8694784 0.0000000
## 1326 0.7227886 4.0 0.9301829 0.8694784 0.0000000
## 1327 0.7227886 4.0 0.9301829 0.8694784 0.0000000
## 1328 0.7227886 4.0 0.9301829 0.8694784 0.0000000
## 1329 0.7227886 4.0 0.9301829 0.8694784 0.0000000
## 1330 0.7227886 4.0 0.9301829 0.8694784 0.0000000
## 1331 0.7227886 4.0 0.9301829 0.8694784 0.0000000
## 1332 0.7227886 4.0 0.9301829 0.8694784 0.0000000
## 1333 0.7227886 4.0 0.9301829 0.8694784 0.0000000
## 1334 0.7227886 4.0 0.9301829 0.8694784 0.0000000
## 1335 0.7227886 4.0 0.9301829 0.8694784 0.0000000
## 1336 0.7227886 4.0 0.9301829 0.8694784 0.0000000
## 1337 0.7227886 4.0 0.9301829 0.8694784 0.0000000
## 1338 0.7227886 4.0 0.9301829 0.8694784 0.0000000
## 1339 0.7227886 4.0 0.9301829 0.8694784 0.0000000
## 1340 0.7227886 4.0 0.9301829 0.8694784 0.0000000
## 1341 0.7227886 4.0 0.9301829 0.8694784 0.0000000
## 1342 0.7227886 4.0 0.9301829 0.8694784 0.0000000
## 1343 0.7227886 4.0 0.9301829 0.8694784 0.0000000
## 1344 0.7227886 4.0 0.9301829 0.8694784 0.0000000
## 1345 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1346 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1347 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1348 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1349 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1350 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1351 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1352 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1353 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1354 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1355 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1356 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1357 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1358 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1359 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1360 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1361 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1362 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1363 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1364 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1365 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1366 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1367 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1368 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1369 1.6890637 8.5 0.5151939 0.3469772 0.1250000
## 1370 1.6890637 8.5 0.5151939 0.3469772 0.1250000
## 1371 1.6890637 8.5 0.5151939 0.3469772 0.1250000
## 1372 1.6890637 8.5 0.5151939 0.3469772 0.1250000
## 1373 1.6890637 8.5 0.5151939 0.3469772 0.1250000
## 1374 1.6890637 8.5 0.5151939 0.3469772 0.1250000
## 1375 1.6890637 8.5 0.5151939 0.3469772 0.1250000
## 1376 1.6890637 8.5 0.5151939 0.3469772 0.1250000
## 1377 1.6890637 8.5 0.5151939 0.3469772 0.1250000
## 1378 1.6890637 8.5 0.5151939 0.3469772 0.1250000
## 1379 1.6890637 8.5 0.5151939 0.3469772 0.1250000
## 1380 1.6890637 8.5 0.5151939 0.3469772 0.1250000
## 1381 1.6890637 8.5 0.5151939 0.3469772 0.1250000
## 1382 1.6890637 8.5 0.5151939 0.3469772 0.1250000
## 1383 1.6890637 8.5 0.5151939 0.3469772 0.1250000
## 1384 1.6890637 8.5 0.5151939 0.3469772 0.1250000
## 1385 1.6890637 8.5 0.5151939 0.3469772 0.1250000
## 1386 1.6890637 8.5 0.5151939 0.3469772 0.1250000
## 1387 1.6890637 8.5 0.5151939 0.3469772 0.1250000
## 1388 1.6890637 8.5 0.5151939 0.3469772 0.1250000
## 1389 1.6890637 8.5 0.5151939 0.3469772 0.1250000
## 1390 1.6890637 8.5 0.5151939 0.3469772 0.1250000
## 1391 1.6890637 8.5 0.5151939 0.3469772 0.1250000
## 1392 1.6890637 8.5 0.5151939 0.3469772 0.1250000
## 1393 1.6613680 9.0 0.6067317 0.4354738 0.1111111
## 1394 1.6613680 9.0 0.6067317 0.4354738 0.1111111
## 1395 1.6613680 9.0 0.6067317 0.4354738 0.1111111
## 1396 1.6613680 9.0 0.6067317 0.4354738 0.1111111
## 1397 1.6613680 9.0 0.6067317 0.4354738 0.1111111
## 1398 1.6613680 9.0 0.6067317 0.4354738 0.1111111
## 1399 1.6613680 9.0 0.6067317 0.4354738 0.1111111
## 1400 1.6613680 9.0 0.6067317 0.4354738 0.1111111
## 1401 1.6613680 9.0 0.6067317 0.4354738 0.1111111
## 1402 1.6613680 9.0 0.6067317 0.4354738 0.1111111
## 1403 1.6613680 9.0 0.6067317 0.4354738 0.1111111
## 1404 1.6613680 9.0 0.6067317 0.4354738 0.1111111
## 1405 1.6613680 9.0 0.6067317 0.4354738 0.1111111
## 1406 1.6613680 9.0 0.6067317 0.4354738 0.1111111
## 1407 1.6613680 9.0 0.6067317 0.4354738 0.1111111
## 1408 1.6613680 9.0 0.6067317 0.4354738 0.1111111
## 1409 1.6613680 9.0 0.6067317 0.4354738 0.1111111
## 1410 1.6613680 9.0 0.6067317 0.4354738 0.1111111
## 1411 1.6613680 9.0 0.6067317 0.4354738 0.1111111
## 1412 1.6613680 9.0 0.6067317 0.4354738 0.1111111
## 1413 1.6613680 9.0 0.6067317 0.4354738 0.1111111
## 1414 1.6613680 9.0 0.6067317 0.4354738 0.1111111
## 1415 1.6613680 9.0 0.6067317 0.4354738 0.1111111
## 1416 1.6613680 9.0 0.6067317 0.4354738 0.1111111
## 1417 1.7836333 7.5 0.5057999 0.3385088 0.0000000
## 1418 1.7836333 7.5 0.5057999 0.3385088 0.0000000
## 1419 1.7836333 7.5 0.5057999 0.3385088 0.0000000
## 1420 1.7836333 7.5 0.5057999 0.3385088 0.0000000
## 1421 1.7836333 7.5 0.5057999 0.3385088 0.0000000
## 1422 1.7836333 7.5 0.5057999 0.3385088 0.0000000
## 1423 1.7836333 7.5 0.5057999 0.3385088 0.0000000
## 1424 1.7836333 7.5 0.5057999 0.3385088 0.0000000
## 1425 1.7836333 7.5 0.5057999 0.3385088 0.0000000
## 1426 1.7836333 7.5 0.5057999 0.3385088 0.0000000
## 1427 1.7836333 7.5 0.5057999 0.3385088 0.0000000
## 1428 1.7836333 7.5 0.5057999 0.3385088 0.0000000
## 1429 1.7836333 7.5 0.5057999 0.3385088 0.0000000
## 1430 1.7836333 7.5 0.5057999 0.3385088 0.0000000
## 1431 1.7836333 7.5 0.5057999 0.3385088 0.0000000
## 1432 1.7836333 7.5 0.5057999 0.3385088 0.0000000
## 1433 1.7836333 7.5 0.5057999 0.3385088 0.0000000
## 1434 1.7836333 7.5 0.5057999 0.3385088 0.0000000
## 1435 1.7836333 7.5 0.5057999 0.3385088 0.0000000
## 1436 1.7836333 7.5 0.5057999 0.3385088 0.0000000
## 1437 1.7836333 7.5 0.5057999 0.3385088 0.0000000
## 1438 1.7836333 7.5 0.5057999 0.3385088 0.0000000
## 1439 1.7836333 7.5 0.5057999 0.3385088 0.0000000
## 1440 1.7836333 7.5 0.5057999 0.3385088 0.0000000
## 1441 1.2942730 5.0 0.7453294 0.5940439 0.3333333
## 1442 1.2942730 5.0 0.7453294 0.5940439 0.3333333
## 1443 1.2942730 5.0 0.7453294 0.5940439 0.3333333
## 1444 1.2942730 5.0 0.7453294 0.5940439 0.3333333
## 1445 1.2942730 5.0 0.7453294 0.5940439 0.3333333
## 1446 1.2942730 5.0 0.7453294 0.5940439 0.3333333
## 1447 1.2942730 5.0 0.7453294 0.5940439 0.3333333
## 1448 1.2942730 5.0 0.7453294 0.5940439 0.3333333
## 1449 1.2942730 5.0 0.7453294 0.5940439 0.3333333
## 1450 1.2942730 5.0 0.7453294 0.5940439 0.3333333
## 1451 1.2942730 5.0 0.7453294 0.5940439 0.3333333
## 1452 1.2942730 5.0 0.7453294 0.5940439 0.3333333
## 1453 1.2942730 5.0 0.7453294 0.5940439 0.3333333
## 1454 1.2942730 5.0 0.7453294 0.5940439 0.3333333
## 1455 1.2942730 5.0 0.7453294 0.5940439 0.3333333
## 1456 1.2942730 5.0 0.7453294 0.5940439 0.3333333
## 1457 1.2942730 5.0 0.7453294 0.5940439 0.3333333
## 1458 1.2942730 5.0 0.7453294 0.5940439 0.3333333
## 1459 1.2942730 5.0 0.7453294 0.5940439 0.3333333
## 1460 1.2942730 5.0 0.7453294 0.5940439 0.3333333
## 1461 1.2942730 5.0 0.7453294 0.5940439 0.3333333
## 1462 1.2942730 5.0 0.7453294 0.5940439 0.3333333
## 1463 1.2942730 5.0 0.7453294 0.5940439 0.3333333
## 1464 1.2942730 5.0 0.7453294 0.5940439 0.3333333
## 1465 1.2686511 4.5 0.9064490 0.8289043 0.3333333
## 1466 1.2686511 4.5 0.9064490 0.8289043 0.3333333
## 1467 1.2686511 4.5 0.9064490 0.8289043 0.3333333
## 1468 1.2686511 4.5 0.9064490 0.8289043 0.3333333
## 1469 1.2686511 4.5 0.9064490 0.8289043 0.3333333
## 1470 1.2686511 4.5 0.9064490 0.8289043 0.3333333
## 1471 1.2686511 4.5 0.9064490 0.8289043 0.3333333
## 1472 1.2686511 4.5 0.9064490 0.8289043 0.3333333
## 1473 1.2686511 4.5 0.9064490 0.8289043 0.3333333
## 1474 1.2686511 4.5 0.9064490 0.8289043 0.3333333
## 1475 1.2686511 4.5 0.9064490 0.8289043 0.3333333
## 1476 1.2686511 4.5 0.9064490 0.8289043 0.3333333
## 1477 1.2686511 4.5 0.9064490 0.8289043 0.3333333
## 1478 1.2686511 4.5 0.9064490 0.8289043 0.3333333
## 1479 1.2686511 4.5 0.9064490 0.8289043 0.3333333
## 1480 1.2686511 4.5 0.9064490 0.8289043 0.3333333
## 1481 1.2686511 4.5 0.9064490 0.8289043 0.3333333
## 1482 1.2686511 4.5 0.9064490 0.8289043 0.3333333
## 1483 1.2686511 4.5 0.9064490 0.8289043 0.3333333
## 1484 1.2686511 4.5 0.9064490 0.8289043 0.3333333
## 1485 1.2686511 4.5 0.9064490 0.8289043 0.3333333
## 1486 1.2686511 4.5 0.9064490 0.8289043 0.3333333
## 1487 1.2686511 4.5 0.9064490 0.8289043 0.3333333
## 1488 1.2686511 4.5 0.9064490 0.8289043 0.3333333
## 1489 0.5707230 4.5 0.8832972 0.7909868 0.0000000
## 1490 0.5707230 4.5 0.8832972 0.7909868 0.0000000
## 1491 0.5707230 4.5 0.8832972 0.7909868 0.0000000
## 1492 0.5707230 4.5 0.8832972 0.7909868 0.0000000
## 1493 0.5707230 4.5 0.8832972 0.7909868 0.0000000
## 1494 0.5707230 4.5 0.8832972 0.7909868 0.0000000
## 1495 0.5707230 4.5 0.8832972 0.7909868 0.0000000
## 1496 0.5707230 4.5 0.8832972 0.7909868 0.0000000
## 1497 0.5707230 4.5 0.8832972 0.7909868 0.0000000
## 1498 0.5707230 4.5 0.8832972 0.7909868 0.0000000
## 1499 0.5707230 4.5 0.8832972 0.7909868 0.0000000
## 1500 0.5707230 4.5 0.8832972 0.7909868 0.0000000
## 1501 0.5707230 4.5 0.8832972 0.7909868 0.0000000
## 1502 0.5707230 4.5 0.8832972 0.7909868 0.0000000
## 1503 0.5707230 4.5 0.8832972 0.7909868 0.0000000
## 1504 0.5707230 4.5 0.8832972 0.7909868 0.0000000
## 1505 0.5707230 4.5 0.8832972 0.7909868 0.0000000
## 1506 0.5707230 4.5 0.8832972 0.7909868 0.0000000
## 1507 0.5707230 4.5 0.8832972 0.7909868 0.0000000
## 1508 0.5707230 4.5 0.8832972 0.7909868 0.0000000
## 1509 0.5707230 4.5 0.8832972 0.7909868 0.0000000
## 1510 0.5707230 4.5 0.8832972 0.7909868 0.0000000
## 1511 0.5707230 4.5 0.8832972 0.7909868 0.0000000
## 1512 0.5707230 4.5 0.8832972 0.7909868 0.0000000
## 1513 0.5951247 4.0 0.9576002 0.9186497 0.0000000
## 1514 0.5951247 4.0 0.9576002 0.9186497 0.0000000
## 1515 0.5951247 4.0 0.9576002 0.9186497 0.0000000
## 1516 0.5951247 4.0 0.9576002 0.9186497 0.0000000
## 1517 0.5951247 4.0 0.9576002 0.9186497 0.0000000
## 1518 0.5951247 4.0 0.9576002 0.9186497 0.0000000
## 1519 0.5951247 4.0 0.9576002 0.9186497 0.0000000
## 1520 0.5951247 4.0 0.9576002 0.9186497 0.0000000
## 1521 0.5951247 4.0 0.9576002 0.9186497 0.0000000
## 1522 0.5951247 4.0 0.9576002 0.9186497 0.0000000
## 1523 0.5951247 4.0 0.9576002 0.9186497 0.0000000
## 1524 0.5951247 4.0 0.9576002 0.9186497 0.0000000
## 1525 0.5951247 4.0 0.9576002 0.9186497 0.0000000
## 1526 0.5951247 4.0 0.9576002 0.9186497 0.0000000
## 1527 0.5951247 4.0 0.9576002 0.9186497 0.0000000
## 1528 0.5951247 4.0 0.9576002 0.9186497 0.0000000
## 1529 0.5951247 4.0 0.9576002 0.9186497 0.0000000
## 1530 0.5951247 4.0 0.9576002 0.9186497 0.0000000
## 1531 0.5951247 4.0 0.9576002 0.9186497 0.0000000
## 1532 0.5951247 4.0 0.9576002 0.9186497 0.0000000
## 1533 0.5951247 4.0 0.9576002 0.9186497 0.0000000
## 1534 0.5951247 4.0 0.9576002 0.9186497 0.0000000
## 1535 0.5951247 4.0 0.9576002 0.9186497 0.0000000
## 1536 0.5951247 4.0 0.9576002 0.9186497 0.0000000
## 1537 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1538 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1539 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1540 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1541 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1542 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1543 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1544 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1545 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1546 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1547 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1548 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1549 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1550 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1551 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1552 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1553 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1554 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1555 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1556 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1557 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1558 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1559 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1560 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1561 1.5862113 7.5 0.3935303 0.2449659 0.1428571
## 1562 1.5862113 7.5 0.3935303 0.2449659 0.1428571
## 1563 1.5862113 7.5 0.3935303 0.2449659 0.1428571
## 1564 1.5862113 7.5 0.3935303 0.2449659 0.1428571
## 1565 1.5862113 7.5 0.3935303 0.2449659 0.1428571
## 1566 1.5862113 7.5 0.3935303 0.2449659 0.1428571
## 1567 1.5862113 7.5 0.3935303 0.2449659 0.1428571
## 1568 1.5862113 7.5 0.3935303 0.2449659 0.1428571
## 1569 1.5862113 7.5 0.3935303 0.2449659 0.1428571
## 1570 1.5862113 7.5 0.3935303 0.2449659 0.1428571
## 1571 1.5862113 7.5 0.3935303 0.2449659 0.1428571
## 1572 1.5862113 7.5 0.3935303 0.2449659 0.1428571
## 1573 1.5862113 7.5 0.3935303 0.2449659 0.1428571
## 1574 1.5862113 7.5 0.3935303 0.2449659 0.1428571
## 1575 1.5862113 7.5 0.3935303 0.2449659 0.1428571
## 1576 1.5862113 7.5 0.3935303 0.2449659 0.1428571
## 1577 1.5862113 7.5 0.3935303 0.2449659 0.1428571
## 1578 1.5862113 7.5 0.3935303 0.2449659 0.1428571
## 1579 1.5862113 7.5 0.3935303 0.2449659 0.1428571
## 1580 1.5862113 7.5 0.3935303 0.2449659 0.1428571
## 1581 1.5862113 7.5 0.3935303 0.2449659 0.1428571
## 1582 1.5862113 7.5 0.3935303 0.2449659 0.1428571
## 1583 1.5862113 7.5 0.3935303 0.2449659 0.1428571
## 1584 1.5862113 7.5 0.3935303 0.2449659 0.1428571
## 1585 1.4948352 8.5 0.6102781 0.4391368 0.1250000
## 1586 1.4948352 8.5 0.6102781 0.4391368 0.1250000
## 1587 1.4948352 8.5 0.6102781 0.4391368 0.1250000
## 1588 1.4948352 8.5 0.6102781 0.4391368 0.1250000
## 1589 1.4948352 8.5 0.6102781 0.4391368 0.1250000
## 1590 1.4948352 8.5 0.6102781 0.4391368 0.1250000
## 1591 1.4948352 8.5 0.6102781 0.4391368 0.1250000
## 1592 1.4948352 8.5 0.6102781 0.4391368 0.1250000
## 1593 1.4948352 8.5 0.6102781 0.4391368 0.1250000
## 1594 1.4948352 8.5 0.6102781 0.4391368 0.1250000
## 1595 1.4948352 8.5 0.6102781 0.4391368 0.1250000
## 1596 1.4948352 8.5 0.6102781 0.4391368 0.1250000
## 1597 1.4948352 8.5 0.6102781 0.4391368 0.1250000
## 1598 1.4948352 8.5 0.6102781 0.4391368 0.1250000
## 1599 1.4948352 8.5 0.6102781 0.4391368 0.1250000
## 1600 1.4948352 8.5 0.6102781 0.4391368 0.1250000
## 1601 1.4948352 8.5 0.6102781 0.4391368 0.1250000
## 1602 1.4948352 8.5 0.6102781 0.4391368 0.1250000
## 1603 1.4948352 8.5 0.6102781 0.4391368 0.1250000
## 1604 1.4948352 8.5 0.6102781 0.4391368 0.1250000
## 1605 1.4948352 8.5 0.6102781 0.4391368 0.1250000
## 1606 1.4948352 8.5 0.6102781 0.4391368 0.1250000
## 1607 1.4948352 8.5 0.6102781 0.4391368 0.1250000
## 1608 1.4948352 8.5 0.6102781 0.4391368 0.1250000
## 1609 1.4254256 6.0 0.5077328 0.3402426 0.1666667
## 1610 1.4254256 6.0 0.5077328 0.3402426 0.1666667
## 1611 1.4254256 6.0 0.5077328 0.3402426 0.1666667
## 1612 1.4254256 6.0 0.5077328 0.3402426 0.1666667
## 1613 1.4254256 6.0 0.5077328 0.3402426 0.1666667
## 1614 1.4254256 6.0 0.5077328 0.3402426 0.1666667
## 1615 1.4254256 6.0 0.5077328 0.3402426 0.1666667
## 1616 1.4254256 6.0 0.5077328 0.3402426 0.1666667
## 1617 1.4254256 6.0 0.5077328 0.3402426 0.1666667
## 1618 1.4254256 6.0 0.5077328 0.3402426 0.1666667
## 1619 1.4254256 6.0 0.5077328 0.3402426 0.1666667
## 1620 1.4254256 6.0 0.5077328 0.3402426 0.1666667
## 1621 1.4254256 6.0 0.5077328 0.3402426 0.1666667
## 1622 1.4254256 6.0 0.5077328 0.3402426 0.1666667
## 1623 1.4254256 6.0 0.5077328 0.3402426 0.1666667
## 1624 1.4254256 6.0 0.5077328 0.3402426 0.1666667
## 1625 1.4254256 6.0 0.5077328 0.3402426 0.1666667
## 1626 1.4254256 6.0 0.5077328 0.3402426 0.1666667
## 1627 1.4254256 6.0 0.5077328 0.3402426 0.1666667
## 1628 1.4254256 6.0 0.5077328 0.3402426 0.1666667
## 1629 1.4254256 6.0 0.5077328 0.3402426 0.1666667
## 1630 1.4254256 6.0 0.5077328 0.3402426 0.1666667
## 1631 1.4254256 6.0 0.5077328 0.3402426 0.1666667
## 1632 1.4254256 6.0 0.5077328 0.3402426 0.1666667
## 1633 1.1525871 4.5 0.7699053 0.6258911 0.6666667
## 1634 1.1525871 4.5 0.7699053 0.6258911 0.6666667
## 1635 1.1525871 4.5 0.7699053 0.6258911 0.6666667
## 1636 1.1525871 4.5 0.7699053 0.6258911 0.6666667
## 1637 1.1525871 4.5 0.7699053 0.6258911 0.6666667
## 1638 1.1525871 4.5 0.7699053 0.6258911 0.6666667
## 1639 1.1525871 4.5 0.7699053 0.6258911 0.6666667
## 1640 1.1525871 4.5 0.7699053 0.6258911 0.6666667
## 1641 1.1525871 4.5 0.7699053 0.6258911 0.6666667
## 1642 1.1525871 4.5 0.7699053 0.6258911 0.6666667
## 1643 1.1525871 4.5 0.7699053 0.6258911 0.6666667
## 1644 1.1525871 4.5 0.7699053 0.6258911 0.6666667
## 1645 1.1525871 4.5 0.7699053 0.6258911 0.6666667
## 1646 1.1525871 4.5 0.7699053 0.6258911 0.6666667
## 1647 1.1525871 4.5 0.7699053 0.6258911 0.6666667
## 1648 1.1525871 4.5 0.7699053 0.6258911 0.6666667
## 1649 1.1525871 4.5 0.7699053 0.6258911 0.6666667
## 1650 1.1525871 4.5 0.7699053 0.6258911 0.6666667
## 1651 1.1525871 4.5 0.7699053 0.6258911 0.6666667
## 1652 1.1525871 4.5 0.7699053 0.6258911 0.6666667
## 1653 1.1525871 4.5 0.7699053 0.6258911 0.6666667
## 1654 1.1525871 4.5 0.7699053 0.6258911 0.6666667
## 1655 1.1525871 4.5 0.7699053 0.6258911 0.6666667
## 1656 1.1525871 4.5 0.7699053 0.6258911 0.6666667
## 1657 1.2474031 4.0 0.9374289 0.8822270 0.6666667
## 1658 1.2474031 4.0 0.9374289 0.8822270 0.6666667
## 1659 1.2474031 4.0 0.9374289 0.8822270 0.6666667
## 1660 1.2474031 4.0 0.9374289 0.8822270 0.6666667
## 1661 1.2474031 4.0 0.9374289 0.8822270 0.6666667
## 1662 1.2474031 4.0 0.9374289 0.8822270 0.6666667
## 1663 1.2474031 4.0 0.9374289 0.8822270 0.6666667
## 1664 1.2474031 4.0 0.9374289 0.8822270 0.6666667
## 1665 1.2474031 4.0 0.9374289 0.8822270 0.6666667
## 1666 1.2474031 4.0 0.9374289 0.8822270 0.6666667
## 1667 1.2474031 4.0 0.9374289 0.8822270 0.6666667
## 1668 1.2474031 4.0 0.9374289 0.8822270 0.6666667
## 1669 1.2474031 4.0 0.9374289 0.8822270 0.6666667
## 1670 1.2474031 4.0 0.9374289 0.8822270 0.6666667
## 1671 1.2474031 4.0 0.9374289 0.8822270 0.6666667
## 1672 1.2474031 4.0 0.9374289 0.8822270 0.6666667
## 1673 1.2474031 4.0 0.9374289 0.8822270 0.6666667
## 1674 1.2474031 4.0 0.9374289 0.8822270 0.6666667
## 1675 1.2474031 4.0 0.9374289 0.8822270 0.6666667
## 1676 1.2474031 4.0 0.9374289 0.8822270 0.6666667
## 1677 1.2474031 4.0 0.9374289 0.8822270 0.6666667
## 1678 1.2474031 4.0 0.9374289 0.8822270 0.6666667
## 1679 1.2474031 4.0 0.9374289 0.8822270 0.6666667
## 1680 1.2474031 4.0 0.9374289 0.8822270 0.6666667
## 1681 0.7728167 3.5 0.7388350 0.5858353 0.0000000
## 1682 0.7728167 3.5 0.7388350 0.5858353 0.0000000
## 1683 0.7728167 3.5 0.7388350 0.5858353 0.0000000
## 1684 0.7728167 3.5 0.7388350 0.5858353 0.0000000
## 1685 0.7728167 3.5 0.7388350 0.5858353 0.0000000
## 1686 0.7728167 3.5 0.7388350 0.5858353 0.0000000
## 1687 0.7728167 3.5 0.7388350 0.5858353 0.0000000
## 1688 0.7728167 3.5 0.7388350 0.5858353 0.0000000
## 1689 0.7728167 3.5 0.7388350 0.5858353 0.0000000
## 1690 0.7728167 3.5 0.7388350 0.5858353 0.0000000
## 1691 0.7728167 3.5 0.7388350 0.5858353 0.0000000
## 1692 0.7728167 3.5 0.7388350 0.5858353 0.0000000
## 1693 0.7728167 3.5 0.7388350 0.5858353 0.0000000
## 1694 0.7728167 3.5 0.7388350 0.5858353 0.0000000
## 1695 0.7728167 3.5 0.7388350 0.5858353 0.0000000
## 1696 0.7728167 3.5 0.7388350 0.5858353 0.0000000
## 1697 0.7728167 3.5 0.7388350 0.5858353 0.0000000
## 1698 0.7728167 3.5 0.7388350 0.5858353 0.0000000
## 1699 0.7728167 3.5 0.7388350 0.5858353 0.0000000
## 1700 0.7728167 3.5 0.7388350 0.5858353 0.0000000
## 1701 0.7728167 3.5 0.7388350 0.5858353 0.0000000
## 1702 0.7728167 3.5 0.7388350 0.5858353 0.0000000
## 1703 0.7728167 3.5 0.7388350 0.5858353 0.0000000
## 1704 0.7728167 3.5 0.7388350 0.5858353 0.0000000
## 1705 0.6460517 3.0 0.7497872 0.5997277 0.0000000
## 1706 0.6460517 3.0 0.7497872 0.5997277 0.0000000
## 1707 0.6460517 3.0 0.7497872 0.5997277 0.0000000
## 1708 0.6460517 3.0 0.7497872 0.5997277 0.0000000
## 1709 0.6460517 3.0 0.7497872 0.5997277 0.0000000
## 1710 0.6460517 3.0 0.7497872 0.5997277 0.0000000
## 1711 0.6460517 3.0 0.7497872 0.5997277 0.0000000
## 1712 0.6460517 3.0 0.7497872 0.5997277 0.0000000
## 1713 0.6460517 3.0 0.7497872 0.5997277 0.0000000
## 1714 0.6460517 3.0 0.7497872 0.5997277 0.0000000
## 1715 0.6460517 3.0 0.7497872 0.5997277 0.0000000
## 1716 0.6460517 3.0 0.7497872 0.5997277 0.0000000
## 1717 0.6460517 3.0 0.7497872 0.5997277 0.0000000
## 1718 0.6460517 3.0 0.7497872 0.5997277 0.0000000
## 1719 0.6460517 3.0 0.7497872 0.5997277 0.0000000
## 1720 0.6460517 3.0 0.7497872 0.5997277 0.0000000
## 1721 0.6460517 3.0 0.7497872 0.5997277 0.0000000
## 1722 0.6460517 3.0 0.7497872 0.5997277 0.0000000
## 1723 0.6460517 3.0 0.7497872 0.5997277 0.0000000
## 1724 0.6460517 3.0 0.7497872 0.5997277 0.0000000
## 1725 0.6460517 3.0 0.7497872 0.5997277 0.0000000
## 1726 0.6460517 3.0 0.7497872 0.5997277 0.0000000
## 1727 0.6460517 3.0 0.7497872 0.5997277 0.0000000
## 1728 0.6460517 3.0 0.7497872 0.5997277 0.0000000
## 1729 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1730 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1731 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1732 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1733 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1734 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1735 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1736 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1737 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1738 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1739 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1740 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1741 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1742 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1743 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1744 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1745 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1746 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1747 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1748 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1749 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1750 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1751 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1752 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1753 1.8112725 8.5 0.5241108 0.3551153 0.0000000
## 1754 1.8112725 8.5 0.5241108 0.3551153 0.0000000
## 1755 1.8112725 8.5 0.5241108 0.3551153 0.0000000
## 1756 1.8112725 8.5 0.5241108 0.3551153 0.0000000
## 1757 1.8112725 8.5 0.5241108 0.3551153 0.0000000
## 1758 1.8112725 8.5 0.5241108 0.3551153 0.0000000
## 1759 1.8112725 8.5 0.5241108 0.3551153 0.0000000
## 1760 1.8112725 8.5 0.5241108 0.3551153 0.0000000
## 1761 1.8112725 8.5 0.5241108 0.3551153 0.0000000
## 1762 1.8112725 8.5 0.5241108 0.3551153 0.0000000
## 1763 1.8112725 8.5 0.5241108 0.3551153 0.0000000
## 1764 1.8112725 8.5 0.5241108 0.3551153 0.0000000
## 1765 1.8112725 8.5 0.5241108 0.3551153 0.0000000
## 1766 1.8112725 8.5 0.5241108 0.3551153 0.0000000
## 1767 1.8112725 8.5 0.5241108 0.3551153 0.0000000
## 1768 1.8112725 8.5 0.5241108 0.3551153 0.0000000
## 1769 1.8112725 8.5 0.5241108 0.3551153 0.0000000
## 1770 1.8112725 8.5 0.5241108 0.3551153 0.0000000
## 1771 1.8112725 8.5 0.5241108 0.3551153 0.0000000
## 1772 1.8112725 8.5 0.5241108 0.3551153 0.0000000
## 1773 1.8112725 8.5 0.5241108 0.3551153 0.0000000
## 1774 1.8112725 8.5 0.5241108 0.3551153 0.0000000
## 1775 1.8112725 8.5 0.5241108 0.3551153 0.0000000
## 1776 1.8112725 8.5 0.5241108 0.3551153 0.0000000
## 1777 1.5778693 8.0 0.7006088 0.5391824 0.1428571
## 1778 1.5778693 8.0 0.7006088 0.5391824 0.1428571
## 1779 1.5778693 8.0 0.7006088 0.5391824 0.1428571
## 1780 1.5778693 8.0 0.7006088 0.5391824 0.1428571
## 1781 1.5778693 8.0 0.7006088 0.5391824 0.1428571
## 1782 1.5778693 8.0 0.7006088 0.5391824 0.1428571
## 1783 1.5778693 8.0 0.7006088 0.5391824 0.1428571
## 1784 1.5778693 8.0 0.7006088 0.5391824 0.1428571
## 1785 1.5778693 8.0 0.7006088 0.5391824 0.1428571
## 1786 1.5778693 8.0 0.7006088 0.5391824 0.1428571
## 1787 1.5778693 8.0 0.7006088 0.5391824 0.1428571
## 1788 1.5778693 8.0 0.7006088 0.5391824 0.1428571
## 1789 1.5778693 8.0 0.7006088 0.5391824 0.1428571
## 1790 1.5778693 8.0 0.7006088 0.5391824 0.1428571
## 1791 1.5778693 8.0 0.7006088 0.5391824 0.1428571
## 1792 1.5778693 8.0 0.7006088 0.5391824 0.1428571
## 1793 1.5778693 8.0 0.7006088 0.5391824 0.1428571
## 1794 1.5778693 8.0 0.7006088 0.5391824 0.1428571
## 1795 1.5778693 8.0 0.7006088 0.5391824 0.1428571
## 1796 1.5778693 8.0 0.7006088 0.5391824 0.1428571
## 1797 1.5778693 8.0 0.7006088 0.5391824 0.1428571
## 1798 1.5778693 8.0 0.7006088 0.5391824 0.1428571
## 1799 1.5778693 8.0 0.7006088 0.5391824 0.1428571
## 1800 1.5778693 8.0 0.7006088 0.5391824 0.1428571
## 1801 1.7398154 7.0 0.4756098 0.3120000 0.0000000
## 1802 1.7398154 7.0 0.4756098 0.3120000 0.0000000
## 1803 1.7398154 7.0 0.4756098 0.3120000 0.0000000
## 1804 1.7398154 7.0 0.4756098 0.3120000 0.0000000
## 1805 1.7398154 7.0 0.4756098 0.3120000 0.0000000
## 1806 1.7398154 7.0 0.4756098 0.3120000 0.0000000
## 1807 1.7398154 7.0 0.4756098 0.3120000 0.0000000
## 1808 1.7398154 7.0 0.4756098 0.3120000 0.0000000
## 1809 1.7398154 7.0 0.4756098 0.3120000 0.0000000
## 1810 1.7398154 7.0 0.4756098 0.3120000 0.0000000
## 1811 1.7398154 7.0 0.4756098 0.3120000 0.0000000
## 1812 1.7398154 7.0 0.4756098 0.3120000 0.0000000
## 1813 1.7398154 7.0 0.4756098 0.3120000 0.0000000
## 1814 1.7398154 7.0 0.4756098 0.3120000 0.0000000
## 1815 1.7398154 7.0 0.4756098 0.3120000 0.0000000
## 1816 1.7398154 7.0 0.4756098 0.3120000 0.0000000
## 1817 1.7398154 7.0 0.4756098 0.3120000 0.0000000
## 1818 1.7398154 7.0 0.4756098 0.3120000 0.0000000
## 1819 1.7398154 7.0 0.4756098 0.3120000 0.0000000
## 1820 1.7398154 7.0 0.4756098 0.3120000 0.0000000
## 1821 1.7398154 7.0 0.4756098 0.3120000 0.0000000
## 1822 1.7398154 7.0 0.4756098 0.3120000 0.0000000
## 1823 1.7398154 7.0 0.4756098 0.3120000 0.0000000
## 1824 1.7398154 7.0 0.4756098 0.3120000 0.0000000
## 1825 1.2519825 5.5 0.7460988 0.5950220 0.3333333
## 1826 1.2519825 5.5 0.7460988 0.5950220 0.3333333
## 1827 1.2519825 5.5 0.7460988 0.5950220 0.3333333
## 1828 1.2519825 5.5 0.7460988 0.5950220 0.3333333
## 1829 1.2519825 5.5 0.7460988 0.5950220 0.3333333
## 1830 1.2519825 5.5 0.7460988 0.5950220 0.3333333
## 1831 1.2519825 5.5 0.7460988 0.5950220 0.3333333
## 1832 1.2519825 5.5 0.7460988 0.5950220 0.3333333
## 1833 1.2519825 5.5 0.7460988 0.5950220 0.3333333
## 1834 1.2519825 5.5 0.7460988 0.5950220 0.3333333
## 1835 1.2519825 5.5 0.7460988 0.5950220 0.3333333
## 1836 1.2519825 5.5 0.7460988 0.5950220 0.3333333
## 1837 1.2519825 5.5 0.7460988 0.5950220 0.3333333
## 1838 1.2519825 5.5 0.7460988 0.5950220 0.3333333
## 1839 1.2519825 5.5 0.7460988 0.5950220 0.3333333
## 1840 1.2519825 5.5 0.7460988 0.5950220 0.3333333
## 1841 1.2519825 5.5 0.7460988 0.5950220 0.3333333
## 1842 1.2519825 5.5 0.7460988 0.5950220 0.3333333
## 1843 1.2519825 5.5 0.7460988 0.5950220 0.3333333
## 1844 1.2519825 5.5 0.7460988 0.5950220 0.3333333
## 1845 1.2519825 5.5 0.7460988 0.5950220 0.3333333
## 1846 1.2519825 5.5 0.7460988 0.5950220 0.3333333
## 1847 1.2519825 5.5 0.7460988 0.5950220 0.3333333
## 1848 1.2519825 5.5 0.7460988 0.5950220 0.3333333
## 1849 1.4667712 5.5 0.9079875 0.8314808 0.3333333
## 1850 1.4667712 5.5 0.9079875 0.8314808 0.3333333
## 1851 1.4667712 5.5 0.9079875 0.8314808 0.3333333
## 1852 1.4667712 5.5 0.9079875 0.8314808 0.3333333
## 1853 1.4667712 5.5 0.9079875 0.8314808 0.3333333
## 1854 1.4667712 5.5 0.9079875 0.8314808 0.3333333
## 1855 1.4667712 5.5 0.9079875 0.8314808 0.3333333
## 1856 1.4667712 5.5 0.9079875 0.8314808 0.3333333
## 1857 1.4667712 5.5 0.9079875 0.8314808 0.3333333
## 1858 1.4667712 5.5 0.9079875 0.8314808 0.3333333
## 1859 1.4667712 5.5 0.9079875 0.8314808 0.3333333
## 1860 1.4667712 5.5 0.9079875 0.8314808 0.3333333
## 1861 1.4667712 5.5 0.9079875 0.8314808 0.3333333
## 1862 1.4667712 5.5 0.9079875 0.8314808 0.3333333
## 1863 1.4667712 5.5 0.9079875 0.8314808 0.3333333
## 1864 1.4667712 5.5 0.9079875 0.8314808 0.3333333
## 1865 1.4667712 5.5 0.9079875 0.8314808 0.3333333
## 1866 1.4667712 5.5 0.9079875 0.8314808 0.3333333
## 1867 1.4667712 5.5 0.9079875 0.8314808 0.3333333
## 1868 1.4667712 5.5 0.9079875 0.8314808 0.3333333
## 1869 1.4667712 5.5 0.9079875 0.8314808 0.3333333
## 1870 1.4667712 5.5 0.9079875 0.8314808 0.3333333
## 1871 1.4667712 5.5 0.9079875 0.8314808 0.3333333
## 1872 1.4667712 5.5 0.9079875 0.8314808 0.3333333
## 1873 0.8928972 4.5 0.9027828 0.8227931 0.0000000
## 1874 0.8928972 4.5 0.9027828 0.8227931 0.0000000
## 1875 0.8928972 4.5 0.9027828 0.8227931 0.0000000
## 1876 0.8928972 4.5 0.9027828 0.8227931 0.0000000
## 1877 0.8928972 4.5 0.9027828 0.8227931 0.0000000
## 1878 0.8928972 4.5 0.9027828 0.8227931 0.0000000
## 1879 0.8928972 4.5 0.9027828 0.8227931 0.0000000
## 1880 0.8928972 4.5 0.9027828 0.8227931 0.0000000
## 1881 0.8928972 4.5 0.9027828 0.8227931 0.0000000
## 1882 0.8928972 4.5 0.9027828 0.8227931 0.0000000
## 1883 0.8928972 4.5 0.9027828 0.8227931 0.0000000
## 1884 0.8928972 4.5 0.9027828 0.8227931 0.0000000
## 1885 0.8928972 4.5 0.9027828 0.8227931 0.0000000
## 1886 0.8928972 4.5 0.9027828 0.8227931 0.0000000
## 1887 0.8928972 4.5 0.9027828 0.8227931 0.0000000
## 1888 0.8928972 4.5 0.9027828 0.8227931 0.0000000
## 1889 0.8928972 4.5 0.9027828 0.8227931 0.0000000
## 1890 0.8928972 4.5 0.9027828 0.8227931 0.0000000
## 1891 0.8928972 4.5 0.9027828 0.8227931 0.0000000
## 1892 0.8928972 4.5 0.9027828 0.8227931 0.0000000
## 1893 0.8928972 4.5 0.9027828 0.8227931 0.0000000
## 1894 0.8928972 4.5 0.9027828 0.8227931 0.0000000
## 1895 0.8928972 4.5 0.9027828 0.8227931 0.0000000
## 1896 0.8928972 4.5 0.9027828 0.8227931 0.0000000
## 1897 0.6549539 4.5 0.9497693 0.9043436 0.0000000
## 1898 0.6549539 4.5 0.9497693 0.9043436 0.0000000
## 1899 0.6549539 4.5 0.9497693 0.9043436 0.0000000
## 1900 0.6549539 4.5 0.9497693 0.9043436 0.0000000
## 1901 0.6549539 4.5 0.9497693 0.9043436 0.0000000
## 1902 0.6549539 4.5 0.9497693 0.9043436 0.0000000
## 1903 0.6549539 4.5 0.9497693 0.9043436 0.0000000
## 1904 0.6549539 4.5 0.9497693 0.9043436 0.0000000
## 1905 0.6549539 4.5 0.9497693 0.9043436 0.0000000
## 1906 0.6549539 4.5 0.9497693 0.9043436 0.0000000
## 1907 0.6549539 4.5 0.9497693 0.9043436 0.0000000
## 1908 0.6549539 4.5 0.9497693 0.9043436 0.0000000
## 1909 0.6549539 4.5 0.9497693 0.9043436 0.0000000
## 1910 0.6549539 4.5 0.9497693 0.9043436 0.0000000
## 1911 0.6549539 4.5 0.9497693 0.9043436 0.0000000
## 1912 0.6549539 4.5 0.9497693 0.9043436 0.0000000
## 1913 0.6549539 4.5 0.9497693 0.9043436 0.0000000
## 1914 0.6549539 4.5 0.9497693 0.9043436 0.0000000
## 1915 0.6549539 4.5 0.9497693 0.9043436 0.0000000
## 1916 0.6549539 4.5 0.9497693 0.9043436 0.0000000
## 1917 0.6549539 4.5 0.9497693 0.9043436 0.0000000
## 1918 0.6549539 4.5 0.9497693 0.9043436 0.0000000
## 1919 0.6549539 4.5 0.9497693 0.9043436 0.0000000
## 1920 0.6549539 4.5 0.9497693 0.9043436 0.0000000
## 1921 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1922 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1923 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1924 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1925 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1926 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1927 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1928 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1929 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1930 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1931 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1932 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1933 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1934 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1935 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1936 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1937 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1938 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1939 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1940 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1941 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1942 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1943 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1944 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1945 1.4587022 7.0 0.4647482 0.3027179 0.0000000
## 1946 1.4587022 7.0 0.4647482 0.3027179 0.0000000
## 1947 1.4587022 7.0 0.4647482 0.3027179 0.0000000
## 1948 1.4587022 7.0 0.4647482 0.3027179 0.0000000
## 1949 1.4587022 7.0 0.4647482 0.3027179 0.0000000
## 1950 1.4587022 7.0 0.4647482 0.3027179 0.0000000
## 1951 1.4587022 7.0 0.4647482 0.3027179 0.0000000
## 1952 1.4587022 7.0 0.4647482 0.3027179 0.0000000
## 1953 1.4587022 7.0 0.4647482 0.3027179 0.0000000
## 1954 1.4587022 7.0 0.4647482 0.3027179 0.0000000
## 1955 1.4587022 7.0 0.4647482 0.3027179 0.0000000
## 1956 1.4587022 7.0 0.4647482 0.3027179 0.0000000
## 1957 1.4587022 7.0 0.4647482 0.3027179 0.0000000
## 1958 1.4587022 7.0 0.4647482 0.3027179 0.0000000
## 1959 1.4587022 7.0 0.4647482 0.3027179 0.0000000
## 1960 1.4587022 7.0 0.4647482 0.3027179 0.0000000
## 1961 1.4587022 7.0 0.4647482 0.3027179 0.0000000
## 1962 1.4587022 7.0 0.4647482 0.3027179 0.0000000
## 1963 1.4587022 7.0 0.4647482 0.3027179 0.0000000
## 1964 1.4587022 7.0 0.4647482 0.3027179 0.0000000
## 1965 1.4587022 7.0 0.4647482 0.3027179 0.0000000
## 1966 1.4587022 7.0 0.4647482 0.3027179 0.0000000
## 1967 1.4587022 7.0 0.4647482 0.3027179 0.0000000
## 1968 1.4587022 7.0 0.4647482 0.3027179 0.0000000
## 1969 1.4635307 7.0 0.5222681 0.3534255 0.0000000
## 1970 1.4635307 7.0 0.5222681 0.3534255 0.0000000
## 1971 1.4635307 7.0 0.5222681 0.3534255 0.0000000
## 1972 1.4635307 7.0 0.5222681 0.3534255 0.0000000
## 1973 1.4635307 7.0 0.5222681 0.3534255 0.0000000
## 1974 1.4635307 7.0 0.5222681 0.3534255 0.0000000
## 1975 1.4635307 7.0 0.5222681 0.3534255 0.0000000
## 1976 1.4635307 7.0 0.5222681 0.3534255 0.0000000
## 1977 1.4635307 7.0 0.5222681 0.3534255 0.0000000
## 1978 1.4635307 7.0 0.5222681 0.3534255 0.0000000
## 1979 1.4635307 7.0 0.5222681 0.3534255 0.0000000
## 1980 1.4635307 7.0 0.5222681 0.3534255 0.0000000
## 1981 1.4635307 7.0 0.5222681 0.3534255 0.0000000
## 1982 1.4635307 7.0 0.5222681 0.3534255 0.0000000
## 1983 1.4635307 7.0 0.5222681 0.3534255 0.0000000
## 1984 1.4635307 7.0 0.5222681 0.3534255 0.0000000
## 1985 1.4635307 7.0 0.5222681 0.3534255 0.0000000
## 1986 1.4635307 7.0 0.5222681 0.3534255 0.0000000
## 1987 1.4635307 7.0 0.5222681 0.3534255 0.0000000
## 1988 1.4635307 7.0 0.5222681 0.3534255 0.0000000
## 1989 1.4635307 7.0 0.5222681 0.3534255 0.0000000
## 1990 1.4635307 7.0 0.5222681 0.3534255 0.0000000
## 1991 1.4635307 7.0 0.5222681 0.3534255 0.0000000
## 1992 1.4635307 7.0 0.5222681 0.3534255 0.0000000
## 1993 1.4969088 6.0 0.6928848 0.5300870 0.0000000
## 1994 1.4969088 6.0 0.6928848 0.5300870 0.0000000
## 1995 1.4969088 6.0 0.6928848 0.5300870 0.0000000
## 1996 1.4969088 6.0 0.6928848 0.5300870 0.0000000
## 1997 1.4969088 6.0 0.6928848 0.5300870 0.0000000
## 1998 1.4969088 6.0 0.6928848 0.5300870 0.0000000
## 1999 1.4969088 6.0 0.6928848 0.5300870 0.0000000
## 2000 1.4969088 6.0 0.6928848 0.5300870 0.0000000
## 2001 1.4969088 6.0 0.6928848 0.5300870 0.0000000
## 2002 1.4969088 6.0 0.6928848 0.5300870 0.0000000
## 2003 1.4969088 6.0 0.6928848 0.5300870 0.0000000
## 2004 1.4969088 6.0 0.6928848 0.5300870 0.0000000
## 2005 1.4969088 6.0 0.6928848 0.5300870 0.0000000
## 2006 1.4969088 6.0 0.6928848 0.5300870 0.0000000
## 2007 1.4969088 6.0 0.6928848 0.5300870 0.0000000
## 2008 1.4969088 6.0 0.6928848 0.5300870 0.0000000
## 2009 1.4969088 6.0 0.6928848 0.5300870 0.0000000
## 2010 1.4969088 6.0 0.6928848 0.5300870 0.0000000
## 2011 1.4969088 6.0 0.6928848 0.5300870 0.0000000
## 2012 1.4969088 6.0 0.6928848 0.5300870 0.0000000
## 2013 1.4969088 6.0 0.6928848 0.5300870 0.0000000
## 2014 1.4969088 6.0 0.6928848 0.5300870 0.0000000
## 2015 1.4969088 6.0 0.6928848 0.5300870 0.0000000
## 2016 1.4969088 6.0 0.6928848 0.5300870 0.0000000
## 2017 1.4098276 6.0 0.6760997 0.5106878 0.2500000
## 2018 1.4098276 6.0 0.6760997 0.5106878 0.2500000
## 2019 1.4098276 6.0 0.6760997 0.5106878 0.2500000
## 2020 1.4098276 6.0 0.6760997 0.5106878 0.2500000
## 2021 1.4098276 6.0 0.6760997 0.5106878 0.2500000
## 2022 1.4098276 6.0 0.6760997 0.5106878 0.2500000
## 2023 1.4098276 6.0 0.6760997 0.5106878 0.2500000
## 2024 1.4098276 6.0 0.6760997 0.5106878 0.2500000
## 2025 1.4098276 6.0 0.6760997 0.5106878 0.2500000
## 2026 1.4098276 6.0 0.6760997 0.5106878 0.2500000
## 2027 1.4098276 6.0 0.6760997 0.5106878 0.2500000
## 2028 1.4098276 6.0 0.6760997 0.5106878 0.2500000
## 2029 1.4098276 6.0 0.6760997 0.5106878 0.2500000
## 2030 1.4098276 6.0 0.6760997 0.5106878 0.2500000
## 2031 1.4098276 6.0 0.6760997 0.5106878 0.2500000
## 2032 1.4098276 6.0 0.6760997 0.5106878 0.2500000
## 2033 1.4098276 6.0 0.6760997 0.5106878 0.2500000
## 2034 1.4098276 6.0 0.6760997 0.5106878 0.2500000
## 2035 1.4098276 6.0 0.6760997 0.5106878 0.2500000
## 2036 1.4098276 6.0 0.6760997 0.5106878 0.2500000
## 2037 1.4098276 6.0 0.6760997 0.5106878 0.2500000
## 2038 1.4098276 6.0 0.6760997 0.5106878 0.2500000
## 2039 1.4098276 6.0 0.6760997 0.5106878 0.2500000
## 2040 1.4098276 6.0 0.6760997 0.5106878 0.2500000
## 2041 0.8677885 4.0 0.8623853 0.7580645 0.5000000
## 2042 0.8677885 4.0 0.8623853 0.7580645 0.5000000
## 2043 0.8677885 4.0 0.8623853 0.7580645 0.5000000
## 2044 0.8677885 4.0 0.8623853 0.7580645 0.5000000
## 2045 0.8677885 4.0 0.8623853 0.7580645 0.5000000
## 2046 0.8677885 4.0 0.8623853 0.7580645 0.5000000
## 2047 0.8677885 4.0 0.8623853 0.7580645 0.5000000
## 2048 0.8677885 4.0 0.8623853 0.7580645 0.5000000
## 2049 0.8677885 4.0 0.8623853 0.7580645 0.5000000
## 2050 0.8677885 4.0 0.8623853 0.7580645 0.5000000
## 2051 0.8677885 4.0 0.8623853 0.7580645 0.5000000
## 2052 0.8677885 4.0 0.8623853 0.7580645 0.5000000
## 2053 0.8677885 4.0 0.8623853 0.7580645 0.5000000
## 2054 0.8677885 4.0 0.8623853 0.7580645 0.5000000
## 2055 0.8677885 4.0 0.8623853 0.7580645 0.5000000
## 2056 0.8677885 4.0 0.8623853 0.7580645 0.5000000
## 2057 0.8677885 4.0 0.8623853 0.7580645 0.5000000
## 2058 0.8677885 4.0 0.8623853 0.7580645 0.5000000
## 2059 0.8677885 4.0 0.8623853 0.7580645 0.5000000
## 2060 0.8677885 4.0 0.8623853 0.7580645 0.5000000
## 2061 0.8677885 4.0 0.8623853 0.7580645 0.5000000
## 2062 0.8677885 4.0 0.8623853 0.7580645 0.5000000
## 2063 0.8677885 4.0 0.8623853 0.7580645 0.5000000
## 2064 0.8677885 4.0 0.8623853 0.7580645 0.5000000
## 2065 1.0349319 5.0 0.8940736 0.8084387 0.0000000
## 2066 1.0349319 5.0 0.8940736 0.8084387 0.0000000
## 2067 1.0349319 5.0 0.8940736 0.8084387 0.0000000
## 2068 1.0349319 5.0 0.8940736 0.8084387 0.0000000
## 2069 1.0349319 5.0 0.8940736 0.8084387 0.0000000
## 2070 1.0349319 5.0 0.8940736 0.8084387 0.0000000
## 2071 1.0349319 5.0 0.8940736 0.8084387 0.0000000
## 2072 1.0349319 5.0 0.8940736 0.8084387 0.0000000
## 2073 1.0349319 5.0 0.8940736 0.8084387 0.0000000
## 2074 1.0349319 5.0 0.8940736 0.8084387 0.0000000
## 2075 1.0349319 5.0 0.8940736 0.8084387 0.0000000
## 2076 1.0349319 5.0 0.8940736 0.8084387 0.0000000
## 2077 1.0349319 5.0 0.8940736 0.8084387 0.0000000
## 2078 1.0349319 5.0 0.8940736 0.8084387 0.0000000
## 2079 1.0349319 5.0 0.8940736 0.8084387 0.0000000
## 2080 1.0349319 5.0 0.8940736 0.8084387 0.0000000
## 2081 1.0349319 5.0 0.8940736 0.8084387 0.0000000
## 2082 1.0349319 5.0 0.8940736 0.8084387 0.0000000
## 2083 1.0349319 5.0 0.8940736 0.8084387 0.0000000
## 2084 1.0349319 5.0 0.8940736 0.8084387 0.0000000
## 2085 1.0349319 5.0 0.8940736 0.8084387 0.0000000
## 2086 1.0349319 5.0 0.8940736 0.8084387 0.0000000
## 2087 1.0349319 5.0 0.8940736 0.8084387 0.0000000
## 2088 1.0349319 5.0 0.8940736 0.8084387 0.0000000
## 2089 0.8886913 5.5 0.8939828 0.8082902 0.5000000
## 2090 0.8886913 5.5 0.8939828 0.8082902 0.5000000
## 2091 0.8886913 5.5 0.8939828 0.8082902 0.5000000
## 2092 0.8886913 5.5 0.8939828 0.8082902 0.5000000
## 2093 0.8886913 5.5 0.8939828 0.8082902 0.5000000
## 2094 0.8886913 5.5 0.8939828 0.8082902 0.5000000
## 2095 0.8886913 5.5 0.8939828 0.8082902 0.5000000
## 2096 0.8886913 5.5 0.8939828 0.8082902 0.5000000
## 2097 0.8886913 5.5 0.8939828 0.8082902 0.5000000
## 2098 0.8886913 5.5 0.8939828 0.8082902 0.5000000
## 2099 0.8886913 5.5 0.8939828 0.8082902 0.5000000
## 2100 0.8886913 5.5 0.8939828 0.8082902 0.5000000
## 2101 0.8886913 5.5 0.8939828 0.8082902 0.5000000
## 2102 0.8886913 5.5 0.8939828 0.8082902 0.5000000
## 2103 0.8886913 5.5 0.8939828 0.8082902 0.5000000
## 2104 0.8886913 5.5 0.8939828 0.8082902 0.5000000
## 2105 0.8886913 5.5 0.8939828 0.8082902 0.5000000
## 2106 0.8886913 5.5 0.8939828 0.8082902 0.5000000
## 2107 0.8886913 5.5 0.8939828 0.8082902 0.5000000
## 2108 0.8886913 5.5 0.8939828 0.8082902 0.5000000
## 2109 0.8886913 5.5 0.8939828 0.8082902 0.5000000
## 2110 0.8886913 5.5 0.8939828 0.8082902 0.5000000
## 2111 0.8886913 5.5 0.8939828 0.8082902 0.5000000
## 2112 0.8886913 5.5 0.8939828 0.8082902 0.5000000
## 2113 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2114 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2115 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2116 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2117 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2118 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2119 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2120 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2121 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2122 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2123 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2124 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2125 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2126 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2127 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2128 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2129 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2130 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2131 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2132 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2133 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2134 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2135 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2136 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2137 1.6928054 7.5 0.5989357 0.4274862 0.1666667
## 2138 1.6928054 7.5 0.5989357 0.4274862 0.1666667
## 2139 1.6928054 7.5 0.5989357 0.4274862 0.1666667
## 2140 1.6928054 7.5 0.5989357 0.4274862 0.1666667
## 2141 1.6928054 7.5 0.5989357 0.4274862 0.1666667
## 2142 1.6928054 7.5 0.5989357 0.4274862 0.1666667
## 2143 1.6928054 7.5 0.5989357 0.4274862 0.1666667
## 2144 1.6928054 7.5 0.5989357 0.4274862 0.1666667
## 2145 1.6928054 7.5 0.5989357 0.4274862 0.1666667
## 2146 1.6928054 7.5 0.5989357 0.4274862 0.1666667
## 2147 1.6928054 7.5 0.5989357 0.4274862 0.1666667
## 2148 1.6928054 7.5 0.5989357 0.4274862 0.1666667
## 2149 1.6928054 7.5 0.5989357 0.4274862 0.1666667
## 2150 1.6928054 7.5 0.5989357 0.4274862 0.1666667
## 2151 1.6928054 7.5 0.5989357 0.4274862 0.1666667
## 2152 1.6928054 7.5 0.5989357 0.4274862 0.1666667
## 2153 1.6928054 7.5 0.5989357 0.4274862 0.1666667
## 2154 1.6928054 7.5 0.5989357 0.4274862 0.1666667
## 2155 1.6928054 7.5 0.5989357 0.4274862 0.1666667
## 2156 1.6928054 7.5 0.5989357 0.4274862 0.1666667
## 2157 1.6928054 7.5 0.5989357 0.4274862 0.1666667
## 2158 1.6928054 7.5 0.5989357 0.4274862 0.1666667
## 2159 1.6928054 7.5 0.5989357 0.4274862 0.1666667
## 2160 1.6928054 7.5 0.5989357 0.4274862 0.1666667
## 2161 1.3904874 5.5 0.2931267 0.1717331 0.0000000
## 2162 1.3904874 5.5 0.2931267 0.1717331 0.0000000
## 2163 1.3904874 5.5 0.2931267 0.1717331 0.0000000
## 2164 1.3904874 5.5 0.2931267 0.1717331 0.0000000
## 2165 1.3904874 5.5 0.2931267 0.1717331 0.0000000
## 2166 1.3904874 5.5 0.2931267 0.1717331 0.0000000
## 2167 1.3904874 5.5 0.2931267 0.1717331 0.0000000
## 2168 1.3904874 5.5 0.2931267 0.1717331 0.0000000
## 2169 1.3904874 5.5 0.2931267 0.1717331 0.0000000
## 2170 1.3904874 5.5 0.2931267 0.1717331 0.0000000
## 2171 1.3904874 5.5 0.2931267 0.1717331 0.0000000
## 2172 1.3904874 5.5 0.2931267 0.1717331 0.0000000
## 2173 1.3904874 5.5 0.2931267 0.1717331 0.0000000
## 2174 1.3904874 5.5 0.2931267 0.1717331 0.0000000
## 2175 1.3904874 5.5 0.2931267 0.1717331 0.0000000
## 2176 1.3904874 5.5 0.2931267 0.1717331 0.0000000
## 2177 1.3904874 5.5 0.2931267 0.1717331 0.0000000
## 2178 1.3904874 5.5 0.2931267 0.1717331 0.0000000
## 2179 1.3904874 5.5 0.2931267 0.1717331 0.0000000
## 2180 1.3904874 5.5 0.2931267 0.1717331 0.0000000
## 2181 1.3904874 5.5 0.2931267 0.1717331 0.0000000
## 2182 1.3904874 5.5 0.2931267 0.1717331 0.0000000
## 2183 1.3904874 5.5 0.2931267 0.1717331 0.0000000
## 2184 1.3904874 5.5 0.2931267 0.1717331 0.0000000
## 2185 1.4161738 6.0 0.5734298 0.4019640 0.0000000
## 2186 1.4161738 6.0 0.5734298 0.4019640 0.0000000
## 2187 1.4161738 6.0 0.5734298 0.4019640 0.0000000
## 2188 1.4161738 6.0 0.5734298 0.4019640 0.0000000
## 2189 1.4161738 6.0 0.5734298 0.4019640 0.0000000
## 2190 1.4161738 6.0 0.5734298 0.4019640 0.0000000
## 2191 1.4161738 6.0 0.5734298 0.4019640 0.0000000
## 2192 1.4161738 6.0 0.5734298 0.4019640 0.0000000
## 2193 1.4161738 6.0 0.5734298 0.4019640 0.0000000
## 2194 1.4161738 6.0 0.5734298 0.4019640 0.0000000
## 2195 1.4161738 6.0 0.5734298 0.4019640 0.0000000
## 2196 1.4161738 6.0 0.5734298 0.4019640 0.0000000
## 2197 1.4161738 6.0 0.5734298 0.4019640 0.0000000
## 2198 1.4161738 6.0 0.5734298 0.4019640 0.0000000
## 2199 1.4161738 6.0 0.5734298 0.4019640 0.0000000
## 2200 1.4161738 6.0 0.5734298 0.4019640 0.0000000
## 2201 1.4161738 6.0 0.5734298 0.4019640 0.0000000
## 2202 1.4161738 6.0 0.5734298 0.4019640 0.0000000
## 2203 1.4161738 6.0 0.5734298 0.4019640 0.0000000
## 2204 1.4161738 6.0 0.5734298 0.4019640 0.0000000
## 2205 1.4161738 6.0 0.5734298 0.4019640 0.0000000
## 2206 1.4161738 6.0 0.5734298 0.4019640 0.0000000
## 2207 1.4161738 6.0 0.5734298 0.4019640 0.0000000
## 2208 1.4161738 6.0 0.5734298 0.4019640 0.0000000
## 2209 1.1830432 4.5 0.5461783 0.3756846 0.2500000
## 2210 1.1830432 4.5 0.5461783 0.3756846 0.2500000
## 2211 1.1830432 4.5 0.5461783 0.3756846 0.2500000
## 2212 1.1830432 4.5 0.5461783 0.3756846 0.2500000
## 2213 1.1830432 4.5 0.5461783 0.3756846 0.2500000
## 2214 1.1830432 4.5 0.5461783 0.3756846 0.2500000
## 2215 1.1830432 4.5 0.5461783 0.3756846 0.2500000
## 2216 1.1830432 4.5 0.5461783 0.3756846 0.2500000
## 2217 1.1830432 4.5 0.5461783 0.3756846 0.2500000
## 2218 1.1830432 4.5 0.5461783 0.3756846 0.2500000
## 2219 1.1830432 4.5 0.5461783 0.3756846 0.2500000
## 2220 1.1830432 4.5 0.5461783 0.3756846 0.2500000
## 2221 1.1830432 4.5 0.5461783 0.3756846 0.2500000
## 2222 1.1830432 4.5 0.5461783 0.3756846 0.2500000
## 2223 1.1830432 4.5 0.5461783 0.3756846 0.2500000
## 2224 1.1830432 4.5 0.5461783 0.3756846 0.2500000
## 2225 1.1830432 4.5 0.5461783 0.3756846 0.2500000
## 2226 1.1830432 4.5 0.5461783 0.3756846 0.2500000
## 2227 1.1830432 4.5 0.5461783 0.3756846 0.2500000
## 2228 1.1830432 4.5 0.5461783 0.3756846 0.2500000
## 2229 1.1830432 4.5 0.5461783 0.3756846 0.2500000
## 2230 1.1830432 4.5 0.5461783 0.3756846 0.2500000
## 2231 1.1830432 4.5 0.5461783 0.3756846 0.2500000
## 2232 1.1830432 4.5 0.5461783 0.3756846 0.2500000
## 2233 1.0779045 5.0 0.8424721 0.7278202 0.0000000
## 2234 1.0779045 5.0 0.8424721 0.7278202 0.0000000
## 2235 1.0779045 5.0 0.8424721 0.7278202 0.0000000
## 2236 1.0779045 5.0 0.8424721 0.7278202 0.0000000
## 2237 1.0779045 5.0 0.8424721 0.7278202 0.0000000
## 2238 1.0779045 5.0 0.8424721 0.7278202 0.0000000
## 2239 1.0779045 5.0 0.8424721 0.7278202 0.0000000
## 2240 1.0779045 5.0 0.8424721 0.7278202 0.0000000
## 2241 1.0779045 5.0 0.8424721 0.7278202 0.0000000
## 2242 1.0779045 5.0 0.8424721 0.7278202 0.0000000
## 2243 1.0779045 5.0 0.8424721 0.7278202 0.0000000
## 2244 1.0779045 5.0 0.8424721 0.7278202 0.0000000
## 2245 1.0779045 5.0 0.8424721 0.7278202 0.0000000
## 2246 1.0779045 5.0 0.8424721 0.7278202 0.0000000
## 2247 1.0779045 5.0 0.8424721 0.7278202 0.0000000
## 2248 1.0779045 5.0 0.8424721 0.7278202 0.0000000
## 2249 1.0779045 5.0 0.8424721 0.7278202 0.0000000
## 2250 1.0779045 5.0 0.8424721 0.7278202 0.0000000
## 2251 1.0779045 5.0 0.8424721 0.7278202 0.0000000
## 2252 1.0779045 5.0 0.8424721 0.7278202 0.0000000
## 2253 1.0779045 5.0 0.8424721 0.7278202 0.0000000
## 2254 1.0779045 5.0 0.8424721 0.7278202 0.0000000
## 2255 1.0779045 5.0 0.8424721 0.7278202 0.0000000
## 2256 1.0779045 5.0 0.8424721 0.7278202 0.0000000
## 2257 1.1343318 5.0 0.9128705 0.8397072 0.0000000
## 2258 1.1343318 5.0 0.9128705 0.8397072 0.0000000
## 2259 1.1343318 5.0 0.9128705 0.8397072 0.0000000
## 2260 1.1343318 5.0 0.9128705 0.8397072 0.0000000
## 2261 1.1343318 5.0 0.9128705 0.8397072 0.0000000
## 2262 1.1343318 5.0 0.9128705 0.8397072 0.0000000
## 2263 1.1343318 5.0 0.9128705 0.8397072 0.0000000
## 2264 1.1343318 5.0 0.9128705 0.8397072 0.0000000
## 2265 1.1343318 5.0 0.9128705 0.8397072 0.0000000
## 2266 1.1343318 5.0 0.9128705 0.8397072 0.0000000
## 2267 1.1343318 5.0 0.9128705 0.8397072 0.0000000
## 2268 1.1343318 5.0 0.9128705 0.8397072 0.0000000
## 2269 1.1343318 5.0 0.9128705 0.8397072 0.0000000
## 2270 1.1343318 5.0 0.9128705 0.8397072 0.0000000
## 2271 1.1343318 5.0 0.9128705 0.8397072 0.0000000
## 2272 1.1343318 5.0 0.9128705 0.8397072 0.0000000
## 2273 1.1343318 5.0 0.9128705 0.8397072 0.0000000
## 2274 1.1343318 5.0 0.9128705 0.8397072 0.0000000
## 2275 1.1343318 5.0 0.9128705 0.8397072 0.0000000
## 2276 1.1343318 5.0 0.9128705 0.8397072 0.0000000
## 2277 1.1343318 5.0 0.9128705 0.8397072 0.0000000
## 2278 1.1343318 5.0 0.9128705 0.8397072 0.0000000
## 2279 1.1343318 5.0 0.9128705 0.8397072 0.0000000
## 2280 1.1343318 5.0 0.9128705 0.8397072 0.0000000
## 2281 0.9541375 4.5 0.8634686 0.7597403 0.5000000
## 2282 0.9541375 4.5 0.8634686 0.7597403 0.5000000
## 2283 0.9541375 4.5 0.8634686 0.7597403 0.5000000
## 2284 0.9541375 4.5 0.8634686 0.7597403 0.5000000
## 2285 0.9541375 4.5 0.8634686 0.7597403 0.5000000
## 2286 0.9541375 4.5 0.8634686 0.7597403 0.5000000
## 2287 0.9541375 4.5 0.8634686 0.7597403 0.5000000
## 2288 0.9541375 4.5 0.8634686 0.7597403 0.5000000
## 2289 0.9541375 4.5 0.8634686 0.7597403 0.5000000
## 2290 0.9541375 4.5 0.8634686 0.7597403 0.5000000
## 2291 0.9541375 4.5 0.8634686 0.7597403 0.5000000
## 2292 0.9541375 4.5 0.8634686 0.7597403 0.5000000
## 2293 0.9541375 4.5 0.8634686 0.7597403 0.5000000
## 2294 0.9541375 4.5 0.8634686 0.7597403 0.5000000
## 2295 0.9541375 4.5 0.8634686 0.7597403 0.5000000
## 2296 0.9541375 4.5 0.8634686 0.7597403 0.5000000
## 2297 0.9541375 4.5 0.8634686 0.7597403 0.5000000
## 2298 0.9541375 4.5 0.8634686 0.7597403 0.5000000
## 2299 0.9541375 4.5 0.8634686 0.7597403 0.5000000
## 2300 0.9541375 4.5 0.8634686 0.7597403 0.5000000
## 2301 0.9541375 4.5 0.8634686 0.7597403 0.5000000
## 2302 0.9541375 4.5 0.8634686 0.7597403 0.5000000
## 2303 0.9541375 4.5 0.8634686 0.7597403 0.5000000
## 2304 0.9541375 4.5 0.8634686 0.7597403 0.5000000
## 2305 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2306 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2307 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2308 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2309 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2310 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2311 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2312 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2313 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2314 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2315 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2316 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2317 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2318 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2319 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2320 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2321 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2322 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2323 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2324 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2325 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2326 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2327 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2328 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2329 1.5937474 7.5 0.3858672 0.2390555 0.1666667
## 2330 1.5937474 7.5 0.3858672 0.2390555 0.1666667
## 2331 1.5937474 7.5 0.3858672 0.2390555 0.1666667
## 2332 1.5937474 7.5 0.3858672 0.2390555 0.1666667
## 2333 1.5937474 7.5 0.3858672 0.2390555 0.1666667
## 2334 1.5937474 7.5 0.3858672 0.2390555 0.1666667
## 2335 1.5937474 7.5 0.3858672 0.2390555 0.1666667
## 2336 1.5937474 7.5 0.3858672 0.2390555 0.1666667
## 2337 1.5937474 7.5 0.3858672 0.2390555 0.1666667
## 2338 1.5937474 7.5 0.3858672 0.2390555 0.1666667
## 2339 1.5937474 7.5 0.3858672 0.2390555 0.1666667
## 2340 1.5937474 7.5 0.3858672 0.2390555 0.1666667
## 2341 1.5937474 7.5 0.3858672 0.2390555 0.1666667
## 2342 1.5937474 7.5 0.3858672 0.2390555 0.1666667
## 2343 1.5937474 7.5 0.3858672 0.2390555 0.1666667
## 2344 1.5937474 7.5 0.3858672 0.2390555 0.1666667
## 2345 1.5937474 7.5 0.3858672 0.2390555 0.1666667
## 2346 1.5937474 7.5 0.3858672 0.2390555 0.1666667
## 2347 1.5937474 7.5 0.3858672 0.2390555 0.1666667
## 2348 1.5937474 7.5 0.3858672 0.2390555 0.1666667
## 2349 1.5937474 7.5 0.3858672 0.2390555 0.1666667
## 2350 1.5937474 7.5 0.3858672 0.2390555 0.1666667
## 2351 1.5937474 7.5 0.3858672 0.2390555 0.1666667
## 2352 1.5937474 7.5 0.3858672 0.2390555 0.1666667
## 2353 1.6035169 7.5 0.3980177 0.2484533 0.0000000
## 2354 1.6035169 7.5 0.3980177 0.2484533 0.0000000
## 2355 1.6035169 7.5 0.3980177 0.2484533 0.0000000
## 2356 1.6035169 7.5 0.3980177 0.2484533 0.0000000
## 2357 1.6035169 7.5 0.3980177 0.2484533 0.0000000
## 2358 1.6035169 7.5 0.3980177 0.2484533 0.0000000
## 2359 1.6035169 7.5 0.3980177 0.2484533 0.0000000
## 2360 1.6035169 7.5 0.3980177 0.2484533 0.0000000
## 2361 1.6035169 7.5 0.3980177 0.2484533 0.0000000
## 2362 1.6035169 7.5 0.3980177 0.2484533 0.0000000
## 2363 1.6035169 7.5 0.3980177 0.2484533 0.0000000
## 2364 1.6035169 7.5 0.3980177 0.2484533 0.0000000
## 2365 1.6035169 7.5 0.3980177 0.2484533 0.0000000
## 2366 1.6035169 7.5 0.3980177 0.2484533 0.0000000
## 2367 1.6035169 7.5 0.3980177 0.2484533 0.0000000
## 2368 1.6035169 7.5 0.3980177 0.2484533 0.0000000
## 2369 1.6035169 7.5 0.3980177 0.2484533 0.0000000
## 2370 1.6035169 7.5 0.3980177 0.2484533 0.0000000
## 2371 1.6035169 7.5 0.3980177 0.2484533 0.0000000
## 2372 1.6035169 7.5 0.3980177 0.2484533 0.0000000
## 2373 1.6035169 7.5 0.3980177 0.2484533 0.0000000
## 2374 1.6035169 7.5 0.3980177 0.2484533 0.0000000
## 2375 1.6035169 7.5 0.3980177 0.2484533 0.0000000
## 2376 1.6035169 7.5 0.3980177 0.2484533 0.0000000
## 2377 1.5172828 6.5 0.6578032 0.4900944 0.0000000
## 2378 1.5172828 6.5 0.6578032 0.4900944 0.0000000
## 2379 1.5172828 6.5 0.6578032 0.4900944 0.0000000
## 2380 1.5172828 6.5 0.6578032 0.4900944 0.0000000
## 2381 1.5172828 6.5 0.6578032 0.4900944 0.0000000
## 2382 1.5172828 6.5 0.6578032 0.4900944 0.0000000
## 2383 1.5172828 6.5 0.6578032 0.4900944 0.0000000
## 2384 1.5172828 6.5 0.6578032 0.4900944 0.0000000
## 2385 1.5172828 6.5 0.6578032 0.4900944 0.0000000
## 2386 1.5172828 6.5 0.6578032 0.4900944 0.0000000
## 2387 1.5172828 6.5 0.6578032 0.4900944 0.0000000
## 2388 1.5172828 6.5 0.6578032 0.4900944 0.0000000
## 2389 1.5172828 6.5 0.6578032 0.4900944 0.0000000
## 2390 1.5172828 6.5 0.6578032 0.4900944 0.0000000
## 2391 1.5172828 6.5 0.6578032 0.4900944 0.0000000
## 2392 1.5172828 6.5 0.6578032 0.4900944 0.0000000
## 2393 1.5172828 6.5 0.6578032 0.4900944 0.0000000
## 2394 1.5172828 6.5 0.6578032 0.4900944 0.0000000
## 2395 1.5172828 6.5 0.6578032 0.4900944 0.0000000
## 2396 1.5172828 6.5 0.6578032 0.4900944 0.0000000
## 2397 1.5172828 6.5 0.6578032 0.4900944 0.0000000
## 2398 1.5172828 6.5 0.6578032 0.4900944 0.0000000
## 2399 1.5172828 6.5 0.6578032 0.4900944 0.0000000
## 2400 1.5172828 6.5 0.6578032 0.4900944 0.0000000
## 2401 1.3203870 5.5 0.5871069 0.4155353 0.2500000
## 2402 1.3203870 5.5 0.5871069 0.4155353 0.2500000
## 2403 1.3203870 5.5 0.5871069 0.4155353 0.2500000
## 2404 1.3203870 5.5 0.5871069 0.4155353 0.2500000
## 2405 1.3203870 5.5 0.5871069 0.4155353 0.2500000
## 2406 1.3203870 5.5 0.5871069 0.4155353 0.2500000
## 2407 1.3203870 5.5 0.5871069 0.4155353 0.2500000
## 2408 1.3203870 5.5 0.5871069 0.4155353 0.2500000
## 2409 1.3203870 5.5 0.5871069 0.4155353 0.2500000
## 2410 1.3203870 5.5 0.5871069 0.4155353 0.2500000
## 2411 1.3203870 5.5 0.5871069 0.4155353 0.2500000
## 2412 1.3203870 5.5 0.5871069 0.4155353 0.2500000
## 2413 1.3203870 5.5 0.5871069 0.4155353 0.2500000
## 2414 1.3203870 5.5 0.5871069 0.4155353 0.2500000
## 2415 1.3203870 5.5 0.5871069 0.4155353 0.2500000
## 2416 1.3203870 5.5 0.5871069 0.4155353 0.2500000
## 2417 1.3203870 5.5 0.5871069 0.4155353 0.2500000
## 2418 1.3203870 5.5 0.5871069 0.4155353 0.2500000
## 2419 1.3203870 5.5 0.5871069 0.4155353 0.2500000
## 2420 1.3203870 5.5 0.5871069 0.4155353 0.2500000
## 2421 1.3203870 5.5 0.5871069 0.4155353 0.2500000
## 2422 1.3203870 5.5 0.5871069 0.4155353 0.2500000
## 2423 1.3203870 5.5 0.5871069 0.4155353 0.2500000
## 2424 1.3203870 5.5 0.5871069 0.4155353 0.2500000
## 2425 0.9457610 4.0 0.8813489 0.7878675 0.5000000
## 2426 0.9457610 4.0 0.8813489 0.7878675 0.5000000
## 2427 0.9457610 4.0 0.8813489 0.7878675 0.5000000
## 2428 0.9457610 4.0 0.8813489 0.7878675 0.5000000
## 2429 0.9457610 4.0 0.8813489 0.7878675 0.5000000
## 2430 0.9457610 4.0 0.8813489 0.7878675 0.5000000
## 2431 0.9457610 4.0 0.8813489 0.7878675 0.5000000
## 2432 0.9457610 4.0 0.8813489 0.7878675 0.5000000
## 2433 0.9457610 4.0 0.8813489 0.7878675 0.5000000
## 2434 0.9457610 4.0 0.8813489 0.7878675 0.5000000
## 2435 0.9457610 4.0 0.8813489 0.7878675 0.5000000
## 2436 0.9457610 4.0 0.8813489 0.7878675 0.5000000
## 2437 0.9457610 4.0 0.8813489 0.7878675 0.5000000
## 2438 0.9457610 4.0 0.8813489 0.7878675 0.5000000
## 2439 0.9457610 4.0 0.8813489 0.7878675 0.5000000
## 2440 0.9457610 4.0 0.8813489 0.7878675 0.5000000
## 2441 0.9457610 4.0 0.8813489 0.7878675 0.5000000
## 2442 0.9457610 4.0 0.8813489 0.7878675 0.5000000
## 2443 0.9457610 4.0 0.8813489 0.7878675 0.5000000
## 2444 0.9457610 4.0 0.8813489 0.7878675 0.5000000
## 2445 0.9457610 4.0 0.8813489 0.7878675 0.5000000
## 2446 0.9457610 4.0 0.8813489 0.7878675 0.5000000
## 2447 0.9457610 4.0 0.8813489 0.7878675 0.5000000
## 2448 0.9457610 4.0 0.8813489 0.7878675 0.5000000
## 2449 1.0476403 5.5 0.8832972 0.7909868 0.0000000
## 2450 1.0476403 5.5 0.8832972 0.7909868 0.0000000
## 2451 1.0476403 5.5 0.8832972 0.7909868 0.0000000
## 2452 1.0476403 5.5 0.8832972 0.7909868 0.0000000
## 2453 1.0476403 5.5 0.8832972 0.7909868 0.0000000
## 2454 1.0476403 5.5 0.8832972 0.7909868 0.0000000
## 2455 1.0476403 5.5 0.8832972 0.7909868 0.0000000
## 2456 1.0476403 5.5 0.8832972 0.7909868 0.0000000
## 2457 1.0476403 5.5 0.8832972 0.7909868 0.0000000
## 2458 1.0476403 5.5 0.8832972 0.7909868 0.0000000
## 2459 1.0476403 5.5 0.8832972 0.7909868 0.0000000
## 2460 1.0476403 5.5 0.8832972 0.7909868 0.0000000
## 2461 1.0476403 5.5 0.8832972 0.7909868 0.0000000
## 2462 1.0476403 5.5 0.8832972 0.7909868 0.0000000
## 2463 1.0476403 5.5 0.8832972 0.7909868 0.0000000
## 2464 1.0476403 5.5 0.8832972 0.7909868 0.0000000
## 2465 1.0476403 5.5 0.8832972 0.7909868 0.0000000
## 2466 1.0476403 5.5 0.8832972 0.7909868 0.0000000
## 2467 1.0476403 5.5 0.8832972 0.7909868 0.0000000
## 2468 1.0476403 5.5 0.8832972 0.7909868 0.0000000
## 2469 1.0476403 5.5 0.8832972 0.7909868 0.0000000
## 2470 1.0476403 5.5 0.8832972 0.7909868 0.0000000
## 2471 1.0476403 5.5 0.8832972 0.7909868 0.0000000
## 2472 1.0476403 5.5 0.8832972 0.7909868 0.0000000
## 2473 0.8264735 4.5 0.9161354 0.8452490 0.5000000
## 2474 0.8264735 4.5 0.9161354 0.8452490 0.5000000
## 2475 0.8264735 4.5 0.9161354 0.8452490 0.5000000
## 2476 0.8264735 4.5 0.9161354 0.8452490 0.5000000
## 2477 0.8264735 4.5 0.9161354 0.8452490 0.5000000
## 2478 0.8264735 4.5 0.9161354 0.8452490 0.5000000
## 2479 0.8264735 4.5 0.9161354 0.8452490 0.5000000
## 2480 0.8264735 4.5 0.9161354 0.8452490 0.5000000
## 2481 0.8264735 4.5 0.9161354 0.8452490 0.5000000
## 2482 0.8264735 4.5 0.9161354 0.8452490 0.5000000
## 2483 0.8264735 4.5 0.9161354 0.8452490 0.5000000
## 2484 0.8264735 4.5 0.9161354 0.8452490 0.5000000
## 2485 0.8264735 4.5 0.9161354 0.8452490 0.5000000
## 2486 0.8264735 4.5 0.9161354 0.8452490 0.5000000
## 2487 0.8264735 4.5 0.9161354 0.8452490 0.5000000
## 2488 0.8264735 4.5 0.9161354 0.8452490 0.5000000
## 2489 0.8264735 4.5 0.9161354 0.8452490 0.5000000
## 2490 0.8264735 4.5 0.9161354 0.8452490 0.5000000
## 2491 0.8264735 4.5 0.9161354 0.8452490 0.5000000
## 2492 0.8264735 4.5 0.9161354 0.8452490 0.5000000
## 2493 0.8264735 4.5 0.9161354 0.8452490 0.5000000
## 2494 0.8264735 4.5 0.9161354 0.8452490 0.5000000
## 2495 0.8264735 4.5 0.9161354 0.8452490 0.5000000
## 2496 0.8264735 4.5 0.9161354 0.8452490 0.5000000
## 2497 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2498 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2499 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2500 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2501 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2502 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2503 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2504 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2505 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2506 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2507 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2508 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2509 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2510 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2511 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2512 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2513 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2514 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2515 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2516 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2517 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2518 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2519 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2520 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2521 1.4908950 6.5 0.4258033 0.2704892 0.0000000
## 2522 1.4908950 6.5 0.4258033 0.2704892 0.0000000
## 2523 1.4908950 6.5 0.4258033 0.2704892 0.0000000
## 2524 1.4908950 6.5 0.4258033 0.2704892 0.0000000
## 2525 1.4908950 6.5 0.4258033 0.2704892 0.0000000
## 2526 1.4908950 6.5 0.4258033 0.2704892 0.0000000
## 2527 1.4908950 6.5 0.4258033 0.2704892 0.0000000
## 2528 1.4908950 6.5 0.4258033 0.2704892 0.0000000
## 2529 1.4908950 6.5 0.4258033 0.2704892 0.0000000
## 2530 1.4908950 6.5 0.4258033 0.2704892 0.0000000
## 2531 1.4908950 6.5 0.4258033 0.2704892 0.0000000
## 2532 1.4908950 6.5 0.4258033 0.2704892 0.0000000
## 2533 1.4908950 6.5 0.4258033 0.2704892 0.0000000
## 2534 1.4908950 6.5 0.4258033 0.2704892 0.0000000
## 2535 1.4908950 6.5 0.4258033 0.2704892 0.0000000
## 2536 1.4908950 6.5 0.4258033 0.2704892 0.0000000
## 2537 1.4908950 6.5 0.4258033 0.2704892 0.0000000
## 2538 1.4908950 6.5 0.4258033 0.2704892 0.0000000
## 2539 1.4908950 6.5 0.4258033 0.2704892 0.0000000
## 2540 1.4908950 6.5 0.4258033 0.2704892 0.0000000
## 2541 1.4908950 6.5 0.4258033 0.2704892 0.0000000
## 2542 1.4908950 6.5 0.4258033 0.2704892 0.0000000
## 2543 1.4908950 6.5 0.4258033 0.2704892 0.0000000
## 2544 1.4908950 6.5 0.4258033 0.2704892 0.0000000
## 2545 1.4369842 7.0 0.5152690 0.3470454 0.0000000
## 2546 1.4369842 7.0 0.5152690 0.3470454 0.0000000
## 2547 1.4369842 7.0 0.5152690 0.3470454 0.0000000
## 2548 1.4369842 7.0 0.5152690 0.3470454 0.0000000
## 2549 1.4369842 7.0 0.5152690 0.3470454 0.0000000
## 2550 1.4369842 7.0 0.5152690 0.3470454 0.0000000
## 2551 1.4369842 7.0 0.5152690 0.3470454 0.0000000
## 2552 1.4369842 7.0 0.5152690 0.3470454 0.0000000
## 2553 1.4369842 7.0 0.5152690 0.3470454 0.0000000
## 2554 1.4369842 7.0 0.5152690 0.3470454 0.0000000
## 2555 1.4369842 7.0 0.5152690 0.3470454 0.0000000
## 2556 1.4369842 7.0 0.5152690 0.3470454 0.0000000
## 2557 1.4369842 7.0 0.5152690 0.3470454 0.0000000
## 2558 1.4369842 7.0 0.5152690 0.3470454 0.0000000
## 2559 1.4369842 7.0 0.5152690 0.3470454 0.0000000
## 2560 1.4369842 7.0 0.5152690 0.3470454 0.0000000
## 2561 1.4369842 7.0 0.5152690 0.3470454 0.0000000
## 2562 1.4369842 7.0 0.5152690 0.3470454 0.0000000
## 2563 1.4369842 7.0 0.5152690 0.3470454 0.0000000
## 2564 1.4369842 7.0 0.5152690 0.3470454 0.0000000
## 2565 1.4369842 7.0 0.5152690 0.3470454 0.0000000
## 2566 1.4369842 7.0 0.5152690 0.3470454 0.0000000
## 2567 1.4369842 7.0 0.5152690 0.3470454 0.0000000
## 2568 1.4369842 7.0 0.5152690 0.3470454 0.0000000
## 2569 1.1590750 5.0 0.3094595 0.1830536 0.2500000
## 2570 1.1590750 5.0 0.3094595 0.1830536 0.2500000
## 2571 1.1590750 5.0 0.3094595 0.1830536 0.2500000
## 2572 1.1590750 5.0 0.3094595 0.1830536 0.2500000
## 2573 1.1590750 5.0 0.3094595 0.1830536 0.2500000
## 2574 1.1590750 5.0 0.3094595 0.1830536 0.2500000
## 2575 1.1590750 5.0 0.3094595 0.1830536 0.2500000
## 2576 1.1590750 5.0 0.3094595 0.1830536 0.2500000
## 2577 1.1590750 5.0 0.3094595 0.1830536 0.2500000
## 2578 1.1590750 5.0 0.3094595 0.1830536 0.2500000
## 2579 1.1590750 5.0 0.3094595 0.1830536 0.2500000
## 2580 1.1590750 5.0 0.3094595 0.1830536 0.2500000
## 2581 1.1590750 5.0 0.3094595 0.1830536 0.2500000
## 2582 1.1590750 5.0 0.3094595 0.1830536 0.2500000
## 2583 1.1590750 5.0 0.3094595 0.1830536 0.2500000
## 2584 1.1590750 5.0 0.3094595 0.1830536 0.2500000
## 2585 1.1590750 5.0 0.3094595 0.1830536 0.2500000
## 2586 1.1590750 5.0 0.3094595 0.1830536 0.2500000
## 2587 1.1590750 5.0 0.3094595 0.1830536 0.2500000
## 2588 1.1590750 5.0 0.3094595 0.1830536 0.2500000
## 2589 1.1590750 5.0 0.3094595 0.1830536 0.2500000
## 2590 1.1590750 5.0 0.3094595 0.1830536 0.2500000
## 2591 1.1590750 5.0 0.3094595 0.1830536 0.2500000
## 2592 1.1590750 5.0 0.3094595 0.1830536 0.2500000
## 2593 1.1787010 5.0 0.5881557 0.4165868 0.2500000
## 2594 1.1787010 5.0 0.5881557 0.4165868 0.2500000
## 2595 1.1787010 5.0 0.5881557 0.4165868 0.2500000
## 2596 1.1787010 5.0 0.5881557 0.4165868 0.2500000
## 2597 1.1787010 5.0 0.5881557 0.4165868 0.2500000
## 2598 1.1787010 5.0 0.5881557 0.4165868 0.2500000
## 2599 1.1787010 5.0 0.5881557 0.4165868 0.2500000
## 2600 1.1787010 5.0 0.5881557 0.4165868 0.2500000
## 2601 1.1787010 5.0 0.5881557 0.4165868 0.2500000
## 2602 1.1787010 5.0 0.5881557 0.4165868 0.2500000
## 2603 1.1787010 5.0 0.5881557 0.4165868 0.2500000
## 2604 1.1787010 5.0 0.5881557 0.4165868 0.2500000
## 2605 1.1787010 5.0 0.5881557 0.4165868 0.2500000
## 2606 1.1787010 5.0 0.5881557 0.4165868 0.2500000
## 2607 1.1787010 5.0 0.5881557 0.4165868 0.2500000
## 2608 1.1787010 5.0 0.5881557 0.4165868 0.2500000
## 2609 1.1787010 5.0 0.5881557 0.4165868 0.2500000
## 2610 1.1787010 5.0 0.5881557 0.4165868 0.2500000
## 2611 1.1787010 5.0 0.5881557 0.4165868 0.2500000
## 2612 1.1787010 5.0 0.5881557 0.4165868 0.2500000
## 2613 1.1787010 5.0 0.5881557 0.4165868 0.2500000
## 2614 1.1787010 5.0 0.5881557 0.4165868 0.2500000
## 2615 1.1787010 5.0 0.5881557 0.4165868 0.2500000
## 2616 1.1787010 5.0 0.5881557 0.4165868 0.2500000
## 2617 0.9245130 3.5 0.8128693 0.6847345 0.5000000
## 2618 0.9245130 3.5 0.8128693 0.6847345 0.5000000
## 2619 0.9245130 3.5 0.8128693 0.6847345 0.5000000
## 2620 0.9245130 3.5 0.8128693 0.6847345 0.5000000
## 2621 0.9245130 3.5 0.8128693 0.6847345 0.5000000
## 2622 0.9245130 3.5 0.8128693 0.6847345 0.5000000
## 2623 0.9245130 3.5 0.8128693 0.6847345 0.5000000
## 2624 0.9245130 3.5 0.8128693 0.6847345 0.5000000
## 2625 0.9245130 3.5 0.8128693 0.6847345 0.5000000
## 2626 0.9245130 3.5 0.8128693 0.6847345 0.5000000
## 2627 0.9245130 3.5 0.8128693 0.6847345 0.5000000
## 2628 0.9245130 3.5 0.8128693 0.6847345 0.5000000
## 2629 0.9245130 3.5 0.8128693 0.6847345 0.5000000
## 2630 0.9245130 3.5 0.8128693 0.6847345 0.5000000
## 2631 0.9245130 3.5 0.8128693 0.6847345 0.5000000
## beta_nestedness beta_total metaecosystem_richness
## 1 0.00000000 0.00000000 11
## 2 0.00000000 0.00000000 11
## 3 0.00000000 0.00000000 11
## 4 0.00000000 0.00000000 11
## 5 0.00000000 0.00000000 11
## 6 0.00000000 0.00000000 11
## 7 0.00000000 0.00000000 11
## 8 0.00000000 0.00000000 11
## 9 0.00000000 0.00000000 11
## 10 0.00000000 0.00000000 11
## 11 0.00000000 0.00000000 11
## 12 0.00000000 0.00000000 11
## 13 0.00000000 0.00000000 11
## 14 0.00000000 0.00000000 11
## 15 0.00000000 0.00000000 11
## 16 0.00000000 0.00000000 11
## 17 0.00000000 0.00000000 11
## 18 0.00000000 0.00000000 11
## 19 0.00000000 0.00000000 11
## 20 0.00000000 0.00000000 11
## 21 0.00000000 0.00000000 11
## 22 0.00000000 0.00000000 11
## 23 0.00000000 0.00000000 11
## 24 0.00000000 0.00000000 11
## 25 0.05714286 0.20000000 9
## 26 0.05714286 0.20000000 9
## 27 0.05714286 0.20000000 9
## 28 0.05714286 0.20000000 9
## 29 0.05714286 0.20000000 9
## 30 0.05714286 0.20000000 9
## 31 0.05714286 0.20000000 9
## 32 0.05714286 0.20000000 9
## 33 0.05714286 0.20000000 9
## 34 0.05714286 0.20000000 9
## 35 0.05714286 0.20000000 9
## 36 0.05714286 0.20000000 9
## 37 0.05714286 0.20000000 9
## 38 0.05714286 0.20000000 9
## 39 0.05714286 0.20000000 9
## 40 0.05714286 0.20000000 9
## 41 0.05714286 0.20000000 9
## 42 0.05714286 0.20000000 9
## 43 0.05714286 0.20000000 9
## 44 0.05714286 0.20000000 9
## 45 0.05714286 0.20000000 9
## 46 0.05714286 0.20000000 9
## 47 0.05714286 0.20000000 9
## 48 0.05714286 0.20000000 9
## 49 0.00000000 0.12500000 9
## 50 0.00000000 0.12500000 9
## 51 0.00000000 0.12500000 9
## 52 0.00000000 0.12500000 9
## 53 0.00000000 0.12500000 9
## 54 0.00000000 0.12500000 9
## 55 0.00000000 0.12500000 9
## 56 0.00000000 0.12500000 9
## 57 0.00000000 0.12500000 9
## 58 0.00000000 0.12500000 9
## 59 0.00000000 0.12500000 9
## 60 0.00000000 0.12500000 9
## 61 0.00000000 0.12500000 9
## 62 0.00000000 0.12500000 9
## 63 0.00000000 0.12500000 9
## 64 0.00000000 0.12500000 9
## 65 0.00000000 0.12500000 9
## 66 0.00000000 0.12500000 9
## 67 0.00000000 0.12500000 9
## 68 0.00000000 0.12500000 9
## 69 0.00000000 0.12500000 9
## 70 0.00000000 0.12500000 9
## 71 0.00000000 0.12500000 9
## 72 0.00000000 0.12500000 9
## 73 0.33333333 0.33333333 8
## 74 0.33333333 0.33333333 8
## 75 0.33333333 0.33333333 8
## 76 0.33333333 0.33333333 8
## 77 0.33333333 0.33333333 8
## 78 0.33333333 0.33333333 8
## 79 0.33333333 0.33333333 8
## 80 0.33333333 0.33333333 8
## 81 0.33333333 0.33333333 8
## 82 0.33333333 0.33333333 8
## 83 0.33333333 0.33333333 8
## 84 0.33333333 0.33333333 8
## 85 0.33333333 0.33333333 8
## 86 0.33333333 0.33333333 8
## 87 0.33333333 0.33333333 8
## 88 0.33333333 0.33333333 8
## 89 0.33333333 0.33333333 8
## 90 0.33333333 0.33333333 8
## 91 0.33333333 0.33333333 8
## 92 0.33333333 0.33333333 8
## 93 0.33333333 0.33333333 8
## 94 0.33333333 0.33333333 8
## 95 0.33333333 0.33333333 8
## 96 0.33333333 0.33333333 8
## 97 0.05714286 0.20000000 9
## 98 0.05714286 0.20000000 9
## 99 0.05714286 0.20000000 9
## 100 0.05714286 0.20000000 9
## 101 0.05714286 0.20000000 9
## 102 0.05714286 0.20000000 9
## 103 0.05714286 0.20000000 9
## 104 0.05714286 0.20000000 9
## 105 0.05714286 0.20000000 9
## 106 0.05714286 0.20000000 9
## 107 0.05714286 0.20000000 9
## 108 0.05714286 0.20000000 9
## 109 0.05714286 0.20000000 9
## 110 0.05714286 0.20000000 9
## 111 0.05714286 0.20000000 9
## 112 0.05714286 0.20000000 9
## 113 0.05714286 0.20000000 9
## 114 0.05714286 0.20000000 9
## 115 0.05714286 0.20000000 9
## 116 0.05714286 0.20000000 9
## 117 0.05714286 0.20000000 9
## 118 0.05714286 0.20000000 9
## 119 0.05714286 0.20000000 9
## 120 0.05714286 0.20000000 9
## 121 0.50000000 0.50000000 6
## 122 0.50000000 0.50000000 6
## 123 0.50000000 0.50000000 6
## 124 0.50000000 0.50000000 6
## 125 0.50000000 0.50000000 6
## 126 0.50000000 0.50000000 6
## 127 0.50000000 0.50000000 6
## 128 0.50000000 0.50000000 6
## 129 0.50000000 0.50000000 6
## 130 0.50000000 0.50000000 6
## 131 0.50000000 0.50000000 6
## 132 0.50000000 0.50000000 6
## 133 0.50000000 0.50000000 6
## 134 0.50000000 0.50000000 6
## 135 0.50000000 0.50000000 6
## 136 0.50000000 0.50000000 6
## 137 0.50000000 0.50000000 6
## 138 0.50000000 0.50000000 6
## 139 0.50000000 0.50000000 6
## 140 0.50000000 0.50000000 6
## 141 0.50000000 0.50000000 6
## 142 0.50000000 0.50000000 6
## 143 0.50000000 0.50000000 6
## 144 0.50000000 0.50000000 6
## 145 0.10000000 0.50000000 9
## 146 0.10000000 0.50000000 9
## 147 0.10000000 0.50000000 9
## 148 0.10000000 0.50000000 9
## 149 0.10000000 0.50000000 9
## 150 0.10000000 0.50000000 9
## 151 0.10000000 0.50000000 9
## 152 0.10000000 0.50000000 9
## 153 0.10000000 0.50000000 9
## 154 0.10000000 0.50000000 9
## 155 0.10000000 0.50000000 9
## 156 0.10000000 0.50000000 9
## 157 0.10000000 0.50000000 9
## 158 0.10000000 0.50000000 9
## 159 0.10000000 0.50000000 9
## 160 0.10000000 0.50000000 9
## 161 0.10000000 0.50000000 9
## 162 0.10000000 0.50000000 9
## 163 0.10000000 0.50000000 9
## 164 0.10000000 0.50000000 9
## 165 0.10000000 0.50000000 9
## 166 0.10000000 0.50000000 9
## 167 0.10000000 0.50000000 9
## 168 0.10000000 0.50000000 9
## 169 0.63636364 0.63636364 9
## 170 0.63636364 0.63636364 9
## 171 0.63636364 0.63636364 9
## 172 0.63636364 0.63636364 9
## 173 0.63636364 0.63636364 9
## 174 0.63636364 0.63636364 9
## 175 0.63636364 0.63636364 9
## 176 0.63636364 0.63636364 9
## 177 0.63636364 0.63636364 9
## 178 0.63636364 0.63636364 9
## 179 0.63636364 0.63636364 9
## 180 0.63636364 0.63636364 9
## 181 0.63636364 0.63636364 9
## 182 0.63636364 0.63636364 9
## 183 0.63636364 0.63636364 9
## 184 0.63636364 0.63636364 9
## 185 0.63636364 0.63636364 9
## 186 0.63636364 0.63636364 9
## 187 0.63636364 0.63636364 9
## 188 0.63636364 0.63636364 9
## 189 0.63636364 0.63636364 9
## 190 0.63636364 0.63636364 9
## 191 0.63636364 0.63636364 9
## 192 0.63636364 0.63636364 9
## 193 0.00000000 0.00000000 11
## 194 0.00000000 0.00000000 11
## 195 0.00000000 0.00000000 11
## 196 0.00000000 0.00000000 11
## 197 0.00000000 0.00000000 11
## 198 0.00000000 0.00000000 11
## 199 0.00000000 0.00000000 11
## 200 0.00000000 0.00000000 11
## 201 0.00000000 0.00000000 11
## 202 0.00000000 0.00000000 11
## 203 0.00000000 0.00000000 11
## 204 0.00000000 0.00000000 11
## 205 0.00000000 0.00000000 11
## 206 0.00000000 0.00000000 11
## 207 0.00000000 0.00000000 11
## 208 0.00000000 0.00000000 11
## 209 0.00000000 0.00000000 11
## 210 0.00000000 0.00000000 11
## 211 0.00000000 0.00000000 11
## 212 0.00000000 0.00000000 11
## 213 0.00000000 0.00000000 11
## 214 0.00000000 0.00000000 11
## 215 0.00000000 0.00000000 11
## 216 0.00000000 0.00000000 11
## 217 0.12500000 0.12500000 9
## 218 0.12500000 0.12500000 9
## 219 0.12500000 0.12500000 9
## 220 0.12500000 0.12500000 9
## 221 0.12500000 0.12500000 9
## 222 0.12500000 0.12500000 9
## 223 0.12500000 0.12500000 9
## 224 0.12500000 0.12500000 9
## 225 0.12500000 0.12500000 9
## 226 0.12500000 0.12500000 9
## 227 0.12500000 0.12500000 9
## 228 0.12500000 0.12500000 9
## 229 0.12500000 0.12500000 9
## 230 0.12500000 0.12500000 9
## 231 0.12500000 0.12500000 9
## 232 0.12500000 0.12500000 9
## 233 0.12500000 0.12500000 9
## 234 0.12500000 0.12500000 9
## 235 0.12500000 0.12500000 9
## 236 0.12500000 0.12500000 9
## 237 0.12500000 0.12500000 9
## 238 0.12500000 0.12500000 9
## 239 0.12500000 0.12500000 9
## 240 0.12500000 0.12500000 9
## 241 0.23076923 0.23076923 8
## 242 0.23076923 0.23076923 8
## 243 0.23076923 0.23076923 8
## 244 0.23076923 0.23076923 8
## 245 0.23076923 0.23076923 8
## 246 0.23076923 0.23076923 8
## 247 0.23076923 0.23076923 8
## 248 0.23076923 0.23076923 8
## 249 0.23076923 0.23076923 8
## 250 0.23076923 0.23076923 8
## 251 0.23076923 0.23076923 8
## 252 0.23076923 0.23076923 8
## 253 0.23076923 0.23076923 8
## 254 0.23076923 0.23076923 8
## 255 0.23076923 0.23076923 8
## 256 0.23076923 0.23076923 8
## 257 0.23076923 0.23076923 8
## 258 0.23076923 0.23076923 8
## 259 0.23076923 0.23076923 8
## 260 0.23076923 0.23076923 8
## 261 0.23076923 0.23076923 8
## 262 0.23076923 0.23076923 8
## 263 0.23076923 0.23076923 8
## 264 0.23076923 0.23076923 8
## 265 0.25000000 0.50000000 9
## 266 0.25000000 0.50000000 9
## 267 0.25000000 0.50000000 9
## 268 0.25000000 0.50000000 9
## 269 0.25000000 0.50000000 9
## 270 0.25000000 0.50000000 9
## 271 0.25000000 0.50000000 9
## 272 0.25000000 0.50000000 9
## 273 0.25000000 0.50000000 9
## 274 0.25000000 0.50000000 9
## 275 0.25000000 0.50000000 9
## 276 0.25000000 0.50000000 9
## 277 0.25000000 0.50000000 9
## 278 0.25000000 0.50000000 9
## 279 0.25000000 0.50000000 9
## 280 0.25000000 0.50000000 9
## 281 0.25000000 0.50000000 9
## 282 0.25000000 0.50000000 9
## 283 0.25000000 0.50000000 9
## 284 0.25000000 0.50000000 9
## 285 0.25000000 0.50000000 9
## 286 0.25000000 0.50000000 9
## 287 0.25000000 0.50000000 9
## 288 0.25000000 0.50000000 9
## 289 0.13333333 0.33333333 8
## 290 0.13333333 0.33333333 8
## 291 0.13333333 0.33333333 8
## 292 0.13333333 0.33333333 8
## 293 0.13333333 0.33333333 8
## 294 0.13333333 0.33333333 8
## 295 0.13333333 0.33333333 8
## 296 0.13333333 0.33333333 8
## 297 0.13333333 0.33333333 8
## 298 0.13333333 0.33333333 8
## 299 0.13333333 0.33333333 8
## 300 0.13333333 0.33333333 8
## 301 0.13333333 0.33333333 8
## 302 0.13333333 0.33333333 8
## 303 0.13333333 0.33333333 8
## 304 0.13333333 0.33333333 8
## 305 0.13333333 0.33333333 8
## 306 0.13333333 0.33333333 8
## 307 0.13333333 0.33333333 8
## 308 0.13333333 0.33333333 8
## 309 0.13333333 0.33333333 8
## 310 0.13333333 0.33333333 8
## 311 0.13333333 0.33333333 8
## 312 0.13333333 0.33333333 8
## 313 0.60000000 0.60000000 8
## 314 0.60000000 0.60000000 8
## 315 0.60000000 0.60000000 8
## 316 0.60000000 0.60000000 8
## 317 0.60000000 0.60000000 8
## 318 0.60000000 0.60000000 8
## 319 0.60000000 0.60000000 8
## 320 0.60000000 0.60000000 8
## 321 0.60000000 0.60000000 8
## 322 0.60000000 0.60000000 8
## 323 0.60000000 0.60000000 8
## 324 0.60000000 0.60000000 8
## 325 0.60000000 0.60000000 8
## 326 0.60000000 0.60000000 8
## 327 0.60000000 0.60000000 8
## 328 0.60000000 0.60000000 8
## 329 0.60000000 0.60000000 8
## 330 0.60000000 0.60000000 8
## 331 0.60000000 0.60000000 8
## 332 0.60000000 0.60000000 8
## 333 0.60000000 0.60000000 8
## 334 0.60000000 0.60000000 8
## 335 0.60000000 0.60000000 8
## 336 0.60000000 0.60000000 8
## 337 0.13333333 0.33333333 8
## 338 0.13333333 0.33333333 8
## 339 0.13333333 0.33333333 8
## 340 0.13333333 0.33333333 8
## 341 0.13333333 0.33333333 8
## 342 0.13333333 0.33333333 8
## 343 0.13333333 0.33333333 8
## 344 0.13333333 0.33333333 8
## 345 0.13333333 0.33333333 8
## 346 0.13333333 0.33333333 8
## 347 0.13333333 0.33333333 8
## 348 0.13333333 0.33333333 8
## 349 0.13333333 0.33333333 8
## 350 0.13333333 0.33333333 8
## 351 0.13333333 0.33333333 8
## 352 0.13333333 0.33333333 8
## 353 0.13333333 0.33333333 8
## 354 0.13333333 0.33333333 8
## 355 0.13333333 0.33333333 8
## 356 0.13333333 0.33333333 8
## 357 0.13333333 0.33333333 8
## 358 0.13333333 0.33333333 8
## 359 0.13333333 0.33333333 8
## 360 0.13333333 0.33333333 8
## 361 0.27777778 0.77777778 8
## 362 0.27777778 0.77777778 8
## 363 0.27777778 0.77777778 8
## 364 0.27777778 0.77777778 8
## 365 0.27777778 0.77777778 8
## 366 0.27777778 0.77777778 8
## 367 0.27777778 0.77777778 8
## 368 0.27777778 0.77777778 8
## 369 0.27777778 0.77777778 8
## 370 0.27777778 0.77777778 8
## 371 0.27777778 0.77777778 8
## 372 0.27777778 0.77777778 8
## 373 0.27777778 0.77777778 8
## 374 0.27777778 0.77777778 8
## 375 0.27777778 0.77777778 8
## 376 0.27777778 0.77777778 8
## 377 0.27777778 0.77777778 8
## 378 0.27777778 0.77777778 8
## 379 0.27777778 0.77777778 8
## 380 0.27777778 0.77777778 8
## 381 0.27777778 0.77777778 8
## 382 0.27777778 0.77777778 8
## 383 0.27777778 0.77777778 8
## 384 0.27777778 0.77777778 8
## 385 0.00000000 0.00000000 11
## 386 0.00000000 0.00000000 11
## 387 0.00000000 0.00000000 11
## 388 0.00000000 0.00000000 11
## 389 0.00000000 0.00000000 11
## 390 0.00000000 0.00000000 11
## 391 0.00000000 0.00000000 11
## 392 0.00000000 0.00000000 11
## 393 0.00000000 0.00000000 11
## 394 0.00000000 0.00000000 11
## 395 0.00000000 0.00000000 11
## 396 0.00000000 0.00000000 11
## 397 0.00000000 0.00000000 11
## 398 0.00000000 0.00000000 11
## 399 0.00000000 0.00000000 11
## 400 0.00000000 0.00000000 11
## 401 0.00000000 0.00000000 11
## 402 0.00000000 0.00000000 11
## 403 0.00000000 0.00000000 11
## 404 0.00000000 0.00000000 11
## 405 0.00000000 0.00000000 11
## 406 0.00000000 0.00000000 11
## 407 0.00000000 0.00000000 11
## 408 0.00000000 0.00000000 11
## 409 0.10714286 0.25000000 10
## 410 0.10714286 0.25000000 10
## 411 0.10714286 0.25000000 10
## 412 0.10714286 0.25000000 10
## 413 0.10714286 0.25000000 10
## 414 0.10714286 0.25000000 10
## 415 0.10714286 0.25000000 10
## 416 0.10714286 0.25000000 10
## 417 0.10714286 0.25000000 10
## 418 0.10714286 0.25000000 10
## 419 0.10714286 0.25000000 10
## 420 0.10714286 0.25000000 10
## 421 0.10714286 0.25000000 10
## 422 0.10714286 0.25000000 10
## 423 0.10714286 0.25000000 10
## 424 0.10714286 0.25000000 10
## 425 0.10714286 0.25000000 10
## 426 0.10714286 0.25000000 10
## 427 0.10714286 0.25000000 10
## 428 0.10714286 0.25000000 10
## 429 0.10714286 0.25000000 10
## 430 0.10714286 0.25000000 10
## 431 0.10714286 0.25000000 10
## 432 0.10714286 0.25000000 10
## 433 0.05147059 0.17647059 10
## 434 0.05147059 0.17647059 10
## 435 0.05147059 0.17647059 10
## 436 0.05147059 0.17647059 10
## 437 0.05147059 0.17647059 10
## 438 0.05147059 0.17647059 10
## 439 0.05147059 0.17647059 10
## 440 0.05147059 0.17647059 10
## 441 0.05147059 0.17647059 10
## 442 0.05147059 0.17647059 10
## 443 0.05147059 0.17647059 10
## 444 0.05147059 0.17647059 10
## 445 0.05147059 0.17647059 10
## 446 0.05147059 0.17647059 10
## 447 0.05147059 0.17647059 10
## 448 0.05147059 0.17647059 10
## 449 0.05147059 0.17647059 10
## 450 0.05147059 0.17647059 10
## 451 0.05147059 0.17647059 10
## 452 0.05147059 0.17647059 10
## 453 0.05147059 0.17647059 10
## 454 0.05147059 0.17647059 10
## 455 0.05147059 0.17647059 10
## 456 0.05147059 0.17647059 10
## 457 0.38461538 0.38461538 9
## 458 0.38461538 0.38461538 9
## 459 0.38461538 0.38461538 9
## 460 0.38461538 0.38461538 9
## 461 0.38461538 0.38461538 9
## 462 0.38461538 0.38461538 9
## 463 0.38461538 0.38461538 9
## 464 0.38461538 0.38461538 9
## 465 0.38461538 0.38461538 9
## 466 0.38461538 0.38461538 9
## 467 0.38461538 0.38461538 9
## 468 0.38461538 0.38461538 9
## 469 0.38461538 0.38461538 9
## 470 0.38461538 0.38461538 9
## 471 0.38461538 0.38461538 9
## 472 0.38461538 0.38461538 9
## 473 0.38461538 0.38461538 9
## 474 0.38461538 0.38461538 9
## 475 0.38461538 0.38461538 9
## 476 0.38461538 0.38461538 9
## 477 0.38461538 0.38461538 9
## 478 0.38461538 0.38461538 9
## 479 0.38461538 0.38461538 9
## 480 0.38461538 0.38461538 9
## 481 0.00000000 0.28571429 9
## 482 0.00000000 0.28571429 9
## 483 0.00000000 0.28571429 9
## 484 0.00000000 0.28571429 9
## 485 0.00000000 0.28571429 9
## 486 0.00000000 0.28571429 9
## 487 0.00000000 0.28571429 9
## 488 0.00000000 0.28571429 9
## 489 0.00000000 0.28571429 9
## 490 0.00000000 0.28571429 9
## 491 0.00000000 0.28571429 9
## 492 0.00000000 0.28571429 9
## 493 0.00000000 0.28571429 9
## 494 0.00000000 0.28571429 9
## 495 0.00000000 0.28571429 9
## 496 0.00000000 0.28571429 9
## 497 0.00000000 0.28571429 9
## 498 0.00000000 0.28571429 9
## 499 0.00000000 0.28571429 9
## 500 0.00000000 0.28571429 9
## 501 0.00000000 0.28571429 9
## 502 0.00000000 0.28571429 9
## 503 0.00000000 0.28571429 9
## 504 0.00000000 0.28571429 9
## 505 0.50000000 0.50000000 6
## 506 0.50000000 0.50000000 6
## 507 0.50000000 0.50000000 6
## 508 0.50000000 0.50000000 6
## 509 0.50000000 0.50000000 6
## 510 0.50000000 0.50000000 6
## 511 0.50000000 0.50000000 6
## 512 0.50000000 0.50000000 6
## 513 0.50000000 0.50000000 6
## 514 0.50000000 0.50000000 6
## 515 0.50000000 0.50000000 6
## 516 0.50000000 0.50000000 6
## 517 0.50000000 0.50000000 6
## 518 0.50000000 0.50000000 6
## 519 0.50000000 0.50000000 6
## 520 0.50000000 0.50000000 6
## 521 0.50000000 0.50000000 6
## 522 0.50000000 0.50000000 6
## 523 0.50000000 0.50000000 6
## 524 0.50000000 0.50000000 6
## 525 0.50000000 0.50000000 6
## 526 0.50000000 0.50000000 6
## 527 0.50000000 0.50000000 6
## 528 0.50000000 0.50000000 6
## 529 0.18461538 0.38461538 9
## 530 0.18461538 0.38461538 9
## 531 0.18461538 0.38461538 9
## 532 0.18461538 0.38461538 9
## 533 0.18461538 0.38461538 9
## 534 0.18461538 0.38461538 9
## 535 0.18461538 0.38461538 9
## 536 0.18461538 0.38461538 9
## 537 0.18461538 0.38461538 9
## 538 0.18461538 0.38461538 9
## 539 0.18461538 0.38461538 9
## 540 0.18461538 0.38461538 9
## 541 0.18461538 0.38461538 9
## 542 0.18461538 0.38461538 9
## 543 0.18461538 0.38461538 9
## 544 0.18461538 0.38461538 9
## 545 0.18461538 0.38461538 9
## 546 0.18461538 0.38461538 9
## 547 0.18461538 0.38461538 9
## 548 0.18461538 0.38461538 9
## 549 0.18461538 0.38461538 9
## 550 0.18461538 0.38461538 9
## 551 0.18461538 0.38461538 9
## 552 0.18461538 0.38461538 9
## 553 0.55555556 0.55555556 7
## 554 0.55555556 0.55555556 7
## 555 0.55555556 0.55555556 7
## 556 0.55555556 0.55555556 7
## 557 0.55555556 0.55555556 7
## 558 0.55555556 0.55555556 7
## 559 0.55555556 0.55555556 7
## 560 0.55555556 0.55555556 7
## 561 0.55555556 0.55555556 7
## 562 0.55555556 0.55555556 7
## 563 0.55555556 0.55555556 7
## 564 0.55555556 0.55555556 7
## 565 0.55555556 0.55555556 7
## 566 0.55555556 0.55555556 7
## 567 0.55555556 0.55555556 7
## 568 0.55555556 0.55555556 7
## 569 0.55555556 0.55555556 7
## 570 0.55555556 0.55555556 7
## 571 0.55555556 0.55555556 7
## 572 0.55555556 0.55555556 7
## 573 0.55555556 0.55555556 7
## 574 0.55555556 0.55555556 7
## 575 0.55555556 0.55555556 7
## 576 0.55555556 0.55555556 7
## 577 0.00000000 0.00000000 11
## 578 0.00000000 0.00000000 11
## 579 0.00000000 0.00000000 11
## 580 0.00000000 0.00000000 11
## 581 0.00000000 0.00000000 11
## 582 0.00000000 0.00000000 11
## 583 0.00000000 0.00000000 11
## 584 0.00000000 0.00000000 11
## 585 0.00000000 0.00000000 11
## 586 0.00000000 0.00000000 11
## 587 0.00000000 0.00000000 11
## 588 0.00000000 0.00000000 11
## 589 0.00000000 0.00000000 11
## 590 0.00000000 0.00000000 11
## 591 0.00000000 0.00000000 11
## 592 0.00000000 0.00000000 11
## 593 0.00000000 0.00000000 11
## 594 0.00000000 0.00000000 11
## 595 0.00000000 0.00000000 11
## 596 0.00000000 0.00000000 11
## 597 0.00000000 0.00000000 11
## 598 0.00000000 0.00000000 11
## 599 0.00000000 0.00000000 11
## 600 0.00000000 0.00000000 11
## 601 0.00000000 0.28571429 9
## 602 0.00000000 0.28571429 9
## 603 0.00000000 0.28571429 9
## 604 0.00000000 0.28571429 9
## 605 0.00000000 0.28571429 9
## 606 0.00000000 0.28571429 9
## 607 0.00000000 0.28571429 9
## 608 0.00000000 0.28571429 9
## 609 0.00000000 0.28571429 9
## 610 0.00000000 0.28571429 9
## 611 0.00000000 0.28571429 9
## 612 0.00000000 0.28571429 9
## 613 0.00000000 0.28571429 9
## 614 0.00000000 0.28571429 9
## 615 0.00000000 0.28571429 9
## 616 0.00000000 0.28571429 9
## 617 0.00000000 0.28571429 9
## 618 0.00000000 0.28571429 9
## 619 0.00000000 0.28571429 9
## 620 0.00000000 0.28571429 9
## 621 0.00000000 0.28571429 9
## 622 0.00000000 0.28571429 9
## 623 0.00000000 0.28571429 9
## 624 0.00000000 0.28571429 9
## 625 0.00000000 0.12500000 9
## 626 0.00000000 0.12500000 9
## 627 0.00000000 0.12500000 9
## 628 0.00000000 0.12500000 9
## 629 0.00000000 0.12500000 9
## 630 0.00000000 0.12500000 9
## 631 0.00000000 0.12500000 9
## 632 0.00000000 0.12500000 9
## 633 0.00000000 0.12500000 9
## 634 0.00000000 0.12500000 9
## 635 0.00000000 0.12500000 9
## 636 0.00000000 0.12500000 9
## 637 0.00000000 0.12500000 9
## 638 0.00000000 0.12500000 9
## 639 0.00000000 0.12500000 9
## 640 0.00000000 0.12500000 9
## 641 0.00000000 0.12500000 9
## 642 0.00000000 0.12500000 9
## 643 0.00000000 0.12500000 9
## 644 0.00000000 0.12500000 9
## 645 0.00000000 0.12500000 9
## 646 0.00000000 0.12500000 9
## 647 0.00000000 0.12500000 9
## 648 0.00000000 0.12500000 9
## 649 0.20000000 0.20000000 6
## 650 0.20000000 0.20000000 6
## 651 0.20000000 0.20000000 6
## 652 0.20000000 0.20000000 6
## 653 0.20000000 0.20000000 6
## 654 0.20000000 0.20000000 6
## 655 0.20000000 0.20000000 6
## 656 0.20000000 0.20000000 6
## 657 0.20000000 0.20000000 6
## 658 0.20000000 0.20000000 6
## 659 0.20000000 0.20000000 6
## 660 0.20000000 0.20000000 6
## 661 0.20000000 0.20000000 6
## 662 0.20000000 0.20000000 6
## 663 0.20000000 0.20000000 6
## 664 0.20000000 0.20000000 6
## 665 0.20000000 0.20000000 6
## 666 0.20000000 0.20000000 6
## 667 0.20000000 0.20000000 6
## 668 0.20000000 0.20000000 6
## 669 0.20000000 0.20000000 6
## 670 0.20000000 0.20000000 6
## 671 0.20000000 0.20000000 6
## 672 0.20000000 0.20000000 6
## 673 0.03846154 0.53846154 10
## 674 0.03846154 0.53846154 10
## 675 0.03846154 0.53846154 10
## 676 0.03846154 0.53846154 10
## 677 0.03846154 0.53846154 10
## 678 0.03846154 0.53846154 10
## 679 0.03846154 0.53846154 10
## 680 0.03846154 0.53846154 10
## 681 0.03846154 0.53846154 10
## 682 0.03846154 0.53846154 10
## 683 0.03846154 0.53846154 10
## 684 0.03846154 0.53846154 10
## 685 0.03846154 0.53846154 10
## 686 0.03846154 0.53846154 10
## 687 0.03846154 0.53846154 10
## 688 0.03846154 0.53846154 10
## 689 0.03846154 0.53846154 10
## 690 0.03846154 0.53846154 10
## 691 0.03846154 0.53846154 10
## 692 0.03846154 0.53846154 10
## 693 0.03846154 0.53846154 10
## 694 0.03846154 0.53846154 10
## 695 0.03846154 0.53846154 10
## 696 0.03846154 0.53846154 10
## 697 0.21428571 0.71428571 6
## 698 0.21428571 0.71428571 6
## 699 0.21428571 0.71428571 6
## 700 0.21428571 0.71428571 6
## 701 0.21428571 0.71428571 6
## 702 0.21428571 0.71428571 6
## 703 0.21428571 0.71428571 6
## 704 0.21428571 0.71428571 6
## 705 0.21428571 0.71428571 6
## 706 0.21428571 0.71428571 6
## 707 0.21428571 0.71428571 6
## 708 0.21428571 0.71428571 6
## 709 0.21428571 0.71428571 6
## 710 0.21428571 0.71428571 6
## 711 0.21428571 0.71428571 6
## 712 0.21428571 0.71428571 6
## 713 0.21428571 0.71428571 6
## 714 0.21428571 0.71428571 6
## 715 0.21428571 0.71428571 6
## 716 0.21428571 0.71428571 6
## 717 0.21428571 0.71428571 6
## 718 0.21428571 0.71428571 6
## 719 0.21428571 0.71428571 6
## 720 0.21428571 0.71428571 6
## 721 0.03636364 0.63636364 9
## 722 0.03636364 0.63636364 9
## 723 0.03636364 0.63636364 9
## 724 0.03636364 0.63636364 9
## 725 0.03636364 0.63636364 9
## 726 0.03636364 0.63636364 9
## 727 0.03636364 0.63636364 9
## 728 0.03636364 0.63636364 9
## 729 0.03636364 0.63636364 9
## 730 0.03636364 0.63636364 9
## 731 0.03636364 0.63636364 9
## 732 0.03636364 0.63636364 9
## 733 0.03636364 0.63636364 9
## 734 0.03636364 0.63636364 9
## 735 0.03636364 0.63636364 9
## 736 0.03636364 0.63636364 9
## 737 0.03636364 0.63636364 9
## 738 0.03636364 0.63636364 9
## 739 0.03636364 0.63636364 9
## 740 0.03636364 0.63636364 9
## 741 0.03636364 0.63636364 9
## 742 0.03636364 0.63636364 9
## 743 0.03636364 0.63636364 9
## 744 0.03636364 0.63636364 9
## 745 0.42857143 0.42857143 5
## 746 0.42857143 0.42857143 5
## 747 0.42857143 0.42857143 5
## 748 0.42857143 0.42857143 5
## 749 0.42857143 0.42857143 5
## 750 0.42857143 0.42857143 5
## 751 0.42857143 0.42857143 5
## 752 0.42857143 0.42857143 5
## 753 0.42857143 0.42857143 5
## 754 0.42857143 0.42857143 5
## 755 0.42857143 0.42857143 5
## 756 0.42857143 0.42857143 5
## 757 0.42857143 0.42857143 5
## 758 0.42857143 0.42857143 5
## 759 0.42857143 0.42857143 5
## 760 0.42857143 0.42857143 5
## 761 0.42857143 0.42857143 5
## 762 0.42857143 0.42857143 5
## 763 0.42857143 0.42857143 5
## 764 0.42857143 0.42857143 5
## 765 0.42857143 0.42857143 5
## 766 0.42857143 0.42857143 5
## 767 0.42857143 0.42857143 5
## 768 0.42857143 0.42857143 5
## 769 0.00000000 0.00000000 11
## 770 0.00000000 0.00000000 11
## 771 0.00000000 0.00000000 11
## 772 0.00000000 0.00000000 11
## 773 0.00000000 0.00000000 11
## 774 0.00000000 0.00000000 11
## 775 0.00000000 0.00000000 11
## 776 0.00000000 0.00000000 11
## 777 0.00000000 0.00000000 11
## 778 0.00000000 0.00000000 11
## 779 0.00000000 0.00000000 11
## 780 0.00000000 0.00000000 11
## 781 0.00000000 0.00000000 11
## 782 0.00000000 0.00000000 11
## 783 0.00000000 0.00000000 11
## 784 0.00000000 0.00000000 11
## 785 0.00000000 0.00000000 11
## 786 0.00000000 0.00000000 11
## 787 0.00000000 0.00000000 11
## 788 0.00000000 0.00000000 11
## 789 0.00000000 0.00000000 11
## 790 0.00000000 0.00000000 11
## 791 0.00000000 0.00000000 11
## 792 0.00000000 0.00000000 11
## 793 0.12500000 0.12500000 9
## 794 0.12500000 0.12500000 9
## 795 0.12500000 0.12500000 9
## 796 0.12500000 0.12500000 9
## 797 0.12500000 0.12500000 9
## 798 0.12500000 0.12500000 9
## 799 0.12500000 0.12500000 9
## 800 0.12500000 0.12500000 9
## 801 0.12500000 0.12500000 9
## 802 0.12500000 0.12500000 9
## 803 0.12500000 0.12500000 9
## 804 0.12500000 0.12500000 9
## 805 0.12500000 0.12500000 9
## 806 0.12500000 0.12500000 9
## 807 0.12500000 0.12500000 9
## 808 0.12500000 0.12500000 9
## 809 0.12500000 0.12500000 9
## 810 0.12500000 0.12500000 9
## 811 0.12500000 0.12500000 9
## 812 0.12500000 0.12500000 9
## 813 0.12500000 0.12500000 9
## 814 0.12500000 0.12500000 9
## 815 0.12500000 0.12500000 9
## 816 0.12500000 0.12500000 9
## 817 0.05714286 0.20000000 9
## 818 0.05714286 0.20000000 9
## 819 0.05714286 0.20000000 9
## 820 0.05714286 0.20000000 9
## 821 0.05714286 0.20000000 9
## 822 0.05714286 0.20000000 9
## 823 0.05714286 0.20000000 9
## 824 0.05714286 0.20000000 9
## 825 0.05714286 0.20000000 9
## 826 0.05714286 0.20000000 9
## 827 0.05714286 0.20000000 9
## 828 0.05714286 0.20000000 9
## 829 0.05714286 0.20000000 9
## 830 0.05714286 0.20000000 9
## 831 0.05714286 0.20000000 9
## 832 0.05714286 0.20000000 9
## 833 0.05714286 0.20000000 9
## 834 0.05714286 0.20000000 9
## 835 0.05714286 0.20000000 9
## 836 0.05714286 0.20000000 9
## 837 0.05714286 0.20000000 9
## 838 0.05714286 0.20000000 9
## 839 0.05714286 0.20000000 9
## 840 0.05714286 0.20000000 9
## 841 0.33333333 0.33333333 8
## 842 0.33333333 0.33333333 8
## 843 0.33333333 0.33333333 8
## 844 0.33333333 0.33333333 8
## 845 0.33333333 0.33333333 8
## 846 0.33333333 0.33333333 8
## 847 0.33333333 0.33333333 8
## 848 0.33333333 0.33333333 8
## 849 0.33333333 0.33333333 8
## 850 0.33333333 0.33333333 8
## 851 0.33333333 0.33333333 8
## 852 0.33333333 0.33333333 8
## 853 0.33333333 0.33333333 8
## 854 0.33333333 0.33333333 8
## 855 0.33333333 0.33333333 8
## 856 0.33333333 0.33333333 8
## 857 0.33333333 0.33333333 8
## 858 0.33333333 0.33333333 8
## 859 0.33333333 0.33333333 8
## 860 0.33333333 0.33333333 8
## 861 0.33333333 0.33333333 8
## 862 0.33333333 0.33333333 8
## 863 0.33333333 0.33333333 8
## 864 0.33333333 0.33333333 8
## 865 0.05714286 0.20000000 9
## 866 0.05714286 0.20000000 9
## 867 0.05714286 0.20000000 9
## 868 0.05714286 0.20000000 9
## 869 0.05714286 0.20000000 9
## 870 0.05714286 0.20000000 9
## 871 0.05714286 0.20000000 9
## 872 0.05714286 0.20000000 9
## 873 0.05714286 0.20000000 9
## 874 0.05714286 0.20000000 9
## 875 0.05714286 0.20000000 9
## 876 0.05714286 0.20000000 9
## 877 0.05714286 0.20000000 9
## 878 0.05714286 0.20000000 9
## 879 0.05714286 0.20000000 9
## 880 0.05714286 0.20000000 9
## 881 0.05714286 0.20000000 9
## 882 0.05714286 0.20000000 9
## 883 0.05714286 0.20000000 9
## 884 0.05714286 0.20000000 9
## 885 0.05714286 0.20000000 9
## 886 0.05714286 0.20000000 9
## 887 0.05714286 0.20000000 9
## 888 0.05714286 0.20000000 9
## 889 0.60000000 0.60000000 8
## 890 0.60000000 0.60000000 8
## 891 0.60000000 0.60000000 8
## 892 0.60000000 0.60000000 8
## 893 0.60000000 0.60000000 8
## 894 0.60000000 0.60000000 8
## 895 0.60000000 0.60000000 8
## 896 0.60000000 0.60000000 8
## 897 0.60000000 0.60000000 8
## 898 0.60000000 0.60000000 8
## 899 0.60000000 0.60000000 8
## 900 0.60000000 0.60000000 8
## 901 0.60000000 0.60000000 8
## 902 0.60000000 0.60000000 8
## 903 0.60000000 0.60000000 8
## 904 0.60000000 0.60000000 8
## 905 0.60000000 0.60000000 8
## 906 0.60000000 0.60000000 8
## 907 0.60000000 0.60000000 8
## 908 0.60000000 0.60000000 8
## 909 0.60000000 0.60000000 8
## 910 0.60000000 0.60000000 8
## 911 0.60000000 0.60000000 8
## 912 0.60000000 0.60000000 8
## 913 0.18461538 0.38461538 9
## 914 0.18461538 0.38461538 9
## 915 0.18461538 0.38461538 9
## 916 0.18461538 0.38461538 9
## 917 0.18461538 0.38461538 9
## 918 0.18461538 0.38461538 9
## 919 0.18461538 0.38461538 9
## 920 0.18461538 0.38461538 9
## 921 0.18461538 0.38461538 9
## 922 0.18461538 0.38461538 9
## 923 0.18461538 0.38461538 9
## 924 0.18461538 0.38461538 9
## 925 0.18461538 0.38461538 9
## 926 0.18461538 0.38461538 9
## 927 0.18461538 0.38461538 9
## 928 0.18461538 0.38461538 9
## 929 0.18461538 0.38461538 9
## 930 0.18461538 0.38461538 9
## 931 0.18461538 0.38461538 9
## 932 0.18461538 0.38461538 9
## 933 0.18461538 0.38461538 9
## 934 0.18461538 0.38461538 9
## 935 0.18461538 0.38461538 9
## 936 0.18461538 0.38461538 9
## 937 0.60000000 0.60000000 8
## 938 0.60000000 0.60000000 8
## 939 0.60000000 0.60000000 8
## 940 0.60000000 0.60000000 8
## 941 0.60000000 0.60000000 8
## 942 0.60000000 0.60000000 8
## 943 0.60000000 0.60000000 8
## 944 0.60000000 0.60000000 8
## 945 0.60000000 0.60000000 8
## 946 0.60000000 0.60000000 8
## 947 0.60000000 0.60000000 8
## 948 0.60000000 0.60000000 8
## 949 0.60000000 0.60000000 8
## 950 0.60000000 0.60000000 8
## 951 0.60000000 0.60000000 8
## 952 0.60000000 0.60000000 8
## 953 0.60000000 0.60000000 8
## 954 0.60000000 0.60000000 8
## 955 0.60000000 0.60000000 8
## 956 0.60000000 0.60000000 8
## 957 0.60000000 0.60000000 8
## 958 0.60000000 0.60000000 8
## 959 0.60000000 0.60000000 8
## 960 0.60000000 0.60000000 8
## 961 0.00000000 0.00000000 11
## 962 0.00000000 0.00000000 11
## 963 0.00000000 0.00000000 11
## 964 0.00000000 0.00000000 11
## 965 0.00000000 0.00000000 11
## 966 0.00000000 0.00000000 11
## 967 0.00000000 0.00000000 11
## 968 0.00000000 0.00000000 11
## 969 0.00000000 0.00000000 11
## 970 0.00000000 0.00000000 11
## 971 0.00000000 0.00000000 11
## 972 0.00000000 0.00000000 11
## 973 0.00000000 0.00000000 11
## 974 0.00000000 0.00000000 11
## 975 0.00000000 0.00000000 11
## 976 0.00000000 0.00000000 11
## 977 0.00000000 0.00000000 11
## 978 0.00000000 0.00000000 11
## 979 0.00000000 0.00000000 11
## 980 0.00000000 0.00000000 11
## 981 0.00000000 0.00000000 11
## 982 0.00000000 0.00000000 11
## 983 0.00000000 0.00000000 11
## 984 0.00000000 0.00000000 11
## 985 0.00000000 0.25000000 10
## 986 0.00000000 0.25000000 10
## 987 0.00000000 0.25000000 10
## 988 0.00000000 0.25000000 10
## 989 0.00000000 0.25000000 10
## 990 0.00000000 0.25000000 10
## 991 0.00000000 0.25000000 10
## 992 0.00000000 0.25000000 10
## 993 0.00000000 0.25000000 10
## 994 0.00000000 0.25000000 10
## 995 0.00000000 0.25000000 10
## 996 0.00000000 0.25000000 10
## 997 0.00000000 0.25000000 10
## 998 0.00000000 0.25000000 10
## 999 0.00000000 0.25000000 10
## 1000 0.00000000 0.25000000 10
## 1001 0.00000000 0.25000000 10
## 1002 0.00000000 0.25000000 10
## 1003 0.00000000 0.25000000 10
## 1004 0.00000000 0.25000000 10
## 1005 0.00000000 0.25000000 10
## 1006 0.00000000 0.25000000 10
## 1007 0.00000000 0.25000000 10
## 1008 0.00000000 0.25000000 10
## 1009 0.05147059 0.17647059 10
## 1010 0.05147059 0.17647059 10
## 1011 0.05147059 0.17647059 10
## 1012 0.05147059 0.17647059 10
## 1013 0.05147059 0.17647059 10
## 1014 0.05147059 0.17647059 10
## 1015 0.05147059 0.17647059 10
## 1016 0.05147059 0.17647059 10
## 1017 0.05147059 0.17647059 10
## 1018 0.05147059 0.17647059 10
## 1019 0.05147059 0.17647059 10
## 1020 0.05147059 0.17647059 10
## 1021 0.05147059 0.17647059 10
## 1022 0.05147059 0.17647059 10
## 1023 0.05147059 0.17647059 10
## 1024 0.05147059 0.17647059 10
## 1025 0.05147059 0.17647059 10
## 1026 0.05147059 0.17647059 10
## 1027 0.05147059 0.17647059 10
## 1028 0.05147059 0.17647059 10
## 1029 0.05147059 0.17647059 10
## 1030 0.05147059 0.17647059 10
## 1031 0.05147059 0.17647059 10
## 1032 0.05147059 0.17647059 10
## 1033 0.14285714 0.14285714 8
## 1034 0.14285714 0.14285714 8
## 1035 0.14285714 0.14285714 8
## 1036 0.14285714 0.14285714 8
## 1037 0.14285714 0.14285714 8
## 1038 0.14285714 0.14285714 8
## 1039 0.14285714 0.14285714 8
## 1040 0.14285714 0.14285714 8
## 1041 0.14285714 0.14285714 8
## 1042 0.14285714 0.14285714 8
## 1043 0.14285714 0.14285714 8
## 1044 0.14285714 0.14285714 8
## 1045 0.14285714 0.14285714 8
## 1046 0.14285714 0.14285714 8
## 1047 0.14285714 0.14285714 8
## 1048 0.14285714 0.14285714 8
## 1049 0.14285714 0.14285714 8
## 1050 0.14285714 0.14285714 8
## 1051 0.14285714 0.14285714 8
## 1052 0.14285714 0.14285714 8
## 1053 0.14285714 0.14285714 8
## 1054 0.14285714 0.14285714 8
## 1055 0.14285714 0.14285714 8
## 1056 0.14285714 0.14285714 8
## 1057 0.45454545 0.45454545 8
## 1058 0.45454545 0.45454545 8
## 1059 0.45454545 0.45454545 8
## 1060 0.45454545 0.45454545 8
## 1061 0.45454545 0.45454545 8
## 1062 0.45454545 0.45454545 8
## 1063 0.45454545 0.45454545 8
## 1064 0.45454545 0.45454545 8
## 1065 0.45454545 0.45454545 8
## 1066 0.45454545 0.45454545 8
## 1067 0.45454545 0.45454545 8
## 1068 0.45454545 0.45454545 8
## 1069 0.45454545 0.45454545 8
## 1070 0.45454545 0.45454545 8
## 1071 0.45454545 0.45454545 8
## 1072 0.45454545 0.45454545 8
## 1073 0.45454545 0.45454545 8
## 1074 0.45454545 0.45454545 8
## 1075 0.45454545 0.45454545 8
## 1076 0.45454545 0.45454545 8
## 1077 0.45454545 0.45454545 8
## 1078 0.45454545 0.45454545 8
## 1079 0.45454545 0.45454545 8
## 1080 0.45454545 0.45454545 8
## 1081 0.22222222 0.55555556 7
## 1082 0.22222222 0.55555556 7
## 1083 0.22222222 0.55555556 7
## 1084 0.22222222 0.55555556 7
## 1085 0.22222222 0.55555556 7
## 1086 0.22222222 0.55555556 7
## 1087 0.22222222 0.55555556 7
## 1088 0.22222222 0.55555556 7
## 1089 0.22222222 0.55555556 7
## 1090 0.22222222 0.55555556 7
## 1091 0.22222222 0.55555556 7
## 1092 0.22222222 0.55555556 7
## 1093 0.22222222 0.55555556 7
## 1094 0.22222222 0.55555556 7
## 1095 0.22222222 0.55555556 7
## 1096 0.22222222 0.55555556 7
## 1097 0.22222222 0.55555556 7
## 1098 0.22222222 0.55555556 7
## 1099 0.22222222 0.55555556 7
## 1100 0.22222222 0.55555556 7
## 1101 0.22222222 0.55555556 7
## 1102 0.22222222 0.55555556 7
## 1103 0.22222222 0.55555556 7
## 1104 0.22222222 0.55555556 7
## 1105 0.75000000 0.75000000 7
## 1106 0.75000000 0.75000000 7
## 1107 0.75000000 0.75000000 7
## 1108 0.75000000 0.75000000 7
## 1109 0.75000000 0.75000000 7
## 1110 0.75000000 0.75000000 7
## 1111 0.75000000 0.75000000 7
## 1112 0.75000000 0.75000000 7
## 1113 0.75000000 0.75000000 7
## 1114 0.75000000 0.75000000 7
## 1115 0.75000000 0.75000000 7
## 1116 0.75000000 0.75000000 7
## 1117 0.75000000 0.75000000 7
## 1118 0.75000000 0.75000000 7
## 1119 0.75000000 0.75000000 7
## 1120 0.75000000 0.75000000 7
## 1121 0.75000000 0.75000000 7
## 1122 0.75000000 0.75000000 7
## 1123 0.75000000 0.75000000 7
## 1124 0.75000000 0.75000000 7
## 1125 0.75000000 0.75000000 7
## 1126 0.75000000 0.75000000 7
## 1127 0.75000000 0.75000000 7
## 1128 0.75000000 0.75000000 7
## 1129 0.80000000 0.80000000 9
## 1130 0.80000000 0.80000000 9
## 1131 0.80000000 0.80000000 9
## 1132 0.80000000 0.80000000 9
## 1133 0.80000000 0.80000000 9
## 1134 0.80000000 0.80000000 9
## 1135 0.80000000 0.80000000 9
## 1136 0.80000000 0.80000000 9
## 1137 0.80000000 0.80000000 9
## 1138 0.80000000 0.80000000 9
## 1139 0.80000000 0.80000000 9
## 1140 0.80000000 0.80000000 9
## 1141 0.80000000 0.80000000 9
## 1142 0.80000000 0.80000000 9
## 1143 0.80000000 0.80000000 9
## 1144 0.80000000 0.80000000 9
## 1145 0.80000000 0.80000000 9
## 1146 0.80000000 0.80000000 9
## 1147 0.80000000 0.80000000 9
## 1148 0.80000000 0.80000000 9
## 1149 0.80000000 0.80000000 9
## 1150 0.80000000 0.80000000 9
## 1151 0.80000000 0.80000000 9
## 1152 0.80000000 0.80000000 9
## 1153 0.00000000 0.00000000 11
## 1154 0.00000000 0.00000000 11
## 1155 0.00000000 0.00000000 11
## 1156 0.00000000 0.00000000 11
## 1157 0.00000000 0.00000000 11
## 1158 0.00000000 0.00000000 11
## 1159 0.00000000 0.00000000 11
## 1160 0.00000000 0.00000000 11
## 1161 0.00000000 0.00000000 11
## 1162 0.00000000 0.00000000 11
## 1163 0.00000000 0.00000000 11
## 1164 0.00000000 0.00000000 11
## 1165 0.00000000 0.00000000 11
## 1166 0.00000000 0.00000000 11
## 1167 0.00000000 0.00000000 11
## 1168 0.00000000 0.00000000 11
## 1169 0.00000000 0.00000000 11
## 1170 0.00000000 0.00000000 11
## 1171 0.00000000 0.00000000 11
## 1172 0.00000000 0.00000000 11
## 1173 0.00000000 0.00000000 11
## 1174 0.00000000 0.00000000 11
## 1175 0.00000000 0.00000000 11
## 1176 0.00000000 0.00000000 11
## 1177 0.05147059 0.17647059 10
## 1178 0.05147059 0.17647059 10
## 1179 0.05147059 0.17647059 10
## 1180 0.05147059 0.17647059 10
## 1181 0.05147059 0.17647059 10
## 1182 0.05147059 0.17647059 10
## 1183 0.05147059 0.17647059 10
## 1184 0.05147059 0.17647059 10
## 1185 0.05147059 0.17647059 10
## 1186 0.05147059 0.17647059 10
## 1187 0.05147059 0.17647059 10
## 1188 0.05147059 0.17647059 10
## 1189 0.05147059 0.17647059 10
## 1190 0.05147059 0.17647059 10
## 1191 0.05147059 0.17647059 10
## 1192 0.05147059 0.17647059 10
## 1193 0.05147059 0.17647059 10
## 1194 0.05147059 0.17647059 10
## 1195 0.05147059 0.17647059 10
## 1196 0.05147059 0.17647059 10
## 1197 0.05147059 0.17647059 10
## 1198 0.05147059 0.17647059 10
## 1199 0.05147059 0.17647059 10
## 1200 0.05147059 0.17647059 10
## 1201 0.28571429 0.28571429 9
## 1202 0.28571429 0.28571429 9
## 1203 0.28571429 0.28571429 9
## 1204 0.28571429 0.28571429 9
## 1205 0.28571429 0.28571429 9
## 1206 0.28571429 0.28571429 9
## 1207 0.28571429 0.28571429 9
## 1208 0.28571429 0.28571429 9
## 1209 0.28571429 0.28571429 9
## 1210 0.28571429 0.28571429 9
## 1211 0.28571429 0.28571429 9
## 1212 0.28571429 0.28571429 9
## 1213 0.28571429 0.28571429 9
## 1214 0.28571429 0.28571429 9
## 1215 0.28571429 0.28571429 9
## 1216 0.28571429 0.28571429 9
## 1217 0.28571429 0.28571429 9
## 1218 0.28571429 0.28571429 9
## 1219 0.28571429 0.28571429 9
## 1220 0.28571429 0.28571429 9
## 1221 0.28571429 0.28571429 9
## 1222 0.28571429 0.28571429 9
## 1223 0.28571429 0.28571429 9
## 1224 0.28571429 0.28571429 9
## 1225 0.11904762 0.28571429 9
## 1226 0.11904762 0.28571429 9
## 1227 0.11904762 0.28571429 9
## 1228 0.11904762 0.28571429 9
## 1229 0.11904762 0.28571429 9
## 1230 0.11904762 0.28571429 9
## 1231 0.11904762 0.28571429 9
## 1232 0.11904762 0.28571429 9
## 1233 0.11904762 0.28571429 9
## 1234 0.11904762 0.28571429 9
## 1235 0.11904762 0.28571429 9
## 1236 0.11904762 0.28571429 9
## 1237 0.11904762 0.28571429 9
## 1238 0.11904762 0.28571429 9
## 1239 0.11904762 0.28571429 9
## 1240 0.11904762 0.28571429 9
## 1241 0.11904762 0.28571429 9
## 1242 0.11904762 0.28571429 9
## 1243 0.11904762 0.28571429 9
## 1244 0.11904762 0.28571429 9
## 1245 0.11904762 0.28571429 9
## 1246 0.11904762 0.28571429 9
## 1247 0.11904762 0.28571429 9
## 1248 0.11904762 0.28571429 9
## 1249 0.16666667 0.50000000 6
## 1250 0.16666667 0.50000000 6
## 1251 0.16666667 0.50000000 6
## 1252 0.16666667 0.50000000 6
## 1253 0.16666667 0.50000000 6
## 1254 0.16666667 0.50000000 6
## 1255 0.16666667 0.50000000 6
## 1256 0.16666667 0.50000000 6
## 1257 0.16666667 0.50000000 6
## 1258 0.16666667 0.50000000 6
## 1259 0.16666667 0.50000000 6
## 1260 0.16666667 0.50000000 6
## 1261 0.16666667 0.50000000 6
## 1262 0.16666667 0.50000000 6
## 1263 0.16666667 0.50000000 6
## 1264 0.16666667 0.50000000 6
## 1265 0.16666667 0.50000000 6
## 1266 0.16666667 0.50000000 6
## 1267 0.16666667 0.50000000 6
## 1268 0.16666667 0.50000000 6
## 1269 0.16666667 0.50000000 6
## 1270 0.16666667 0.50000000 6
## 1271 0.16666667 0.50000000 6
## 1272 0.16666667 0.50000000 6
## 1273 0.45454545 0.45454545 8
## 1274 0.45454545 0.45454545 8
## 1275 0.45454545 0.45454545 8
## 1276 0.45454545 0.45454545 8
## 1277 0.45454545 0.45454545 8
## 1278 0.45454545 0.45454545 8
## 1279 0.45454545 0.45454545 8
## 1280 0.45454545 0.45454545 8
## 1281 0.45454545 0.45454545 8
## 1282 0.45454545 0.45454545 8
## 1283 0.45454545 0.45454545 8
## 1284 0.45454545 0.45454545 8
## 1285 0.45454545 0.45454545 8
## 1286 0.45454545 0.45454545 8
## 1287 0.45454545 0.45454545 8
## 1288 0.45454545 0.45454545 8
## 1289 0.45454545 0.45454545 8
## 1290 0.45454545 0.45454545 8
## 1291 0.45454545 0.45454545 8
## 1292 0.45454545 0.45454545 8
## 1293 0.45454545 0.45454545 8
## 1294 0.45454545 0.45454545 8
## 1295 0.45454545 0.45454545 8
## 1296 0.45454545 0.45454545 8
## 1297 0.75000000 0.75000000 7
## 1298 0.75000000 0.75000000 7
## 1299 0.75000000 0.75000000 7
## 1300 0.75000000 0.75000000 7
## 1301 0.75000000 0.75000000 7
## 1302 0.75000000 0.75000000 7
## 1303 0.75000000 0.75000000 7
## 1304 0.75000000 0.75000000 7
## 1305 0.75000000 0.75000000 7
## 1306 0.75000000 0.75000000 7
## 1307 0.75000000 0.75000000 7
## 1308 0.75000000 0.75000000 7
## 1309 0.75000000 0.75000000 7
## 1310 0.75000000 0.75000000 7
## 1311 0.75000000 0.75000000 7
## 1312 0.75000000 0.75000000 7
## 1313 0.75000000 0.75000000 7
## 1314 0.75000000 0.75000000 7
## 1315 0.75000000 0.75000000 7
## 1316 0.75000000 0.75000000 7
## 1317 0.75000000 0.75000000 7
## 1318 0.75000000 0.75000000 7
## 1319 0.75000000 0.75000000 7
## 1320 0.75000000 0.75000000 7
## 1321 0.75000000 0.75000000 7
## 1322 0.75000000 0.75000000 7
## 1323 0.75000000 0.75000000 7
## 1324 0.75000000 0.75000000 7
## 1325 0.75000000 0.75000000 7
## 1326 0.75000000 0.75000000 7
## 1327 0.75000000 0.75000000 7
## 1328 0.75000000 0.75000000 7
## 1329 0.75000000 0.75000000 7
## 1330 0.75000000 0.75000000 7
## 1331 0.75000000 0.75000000 7
## 1332 0.75000000 0.75000000 7
## 1333 0.75000000 0.75000000 7
## 1334 0.75000000 0.75000000 7
## 1335 0.75000000 0.75000000 7
## 1336 0.75000000 0.75000000 7
## 1337 0.75000000 0.75000000 7
## 1338 0.75000000 0.75000000 7
## 1339 0.75000000 0.75000000 7
## 1340 0.75000000 0.75000000 7
## 1341 0.75000000 0.75000000 7
## 1342 0.75000000 0.75000000 7
## 1343 0.75000000 0.75000000 7
## 1344 0.75000000 0.75000000 7
## 1345 0.00000000 0.00000000 11
## 1346 0.00000000 0.00000000 11
## 1347 0.00000000 0.00000000 11
## 1348 0.00000000 0.00000000 11
## 1349 0.00000000 0.00000000 11
## 1350 0.00000000 0.00000000 11
## 1351 0.00000000 0.00000000 11
## 1352 0.00000000 0.00000000 11
## 1353 0.00000000 0.00000000 11
## 1354 0.00000000 0.00000000 11
## 1355 0.00000000 0.00000000 11
## 1356 0.00000000 0.00000000 11
## 1357 0.00000000 0.00000000 11
## 1358 0.00000000 0.00000000 11
## 1359 0.00000000 0.00000000 11
## 1360 0.00000000 0.00000000 11
## 1361 0.00000000 0.00000000 11
## 1362 0.00000000 0.00000000 11
## 1363 0.00000000 0.00000000 11
## 1364 0.00000000 0.00000000 11
## 1365 0.00000000 0.00000000 11
## 1366 0.00000000 0.00000000 11
## 1367 0.00000000 0.00000000 11
## 1368 0.00000000 0.00000000 11
## 1369 0.05147059 0.17647059 10
## 1370 0.05147059 0.17647059 10
## 1371 0.05147059 0.17647059 10
## 1372 0.05147059 0.17647059 10
## 1373 0.05147059 0.17647059 10
## 1374 0.05147059 0.17647059 10
## 1375 0.05147059 0.17647059 10
## 1376 0.05147059 0.17647059 10
## 1377 0.05147059 0.17647059 10
## 1378 0.05147059 0.17647059 10
## 1379 0.05147059 0.17647059 10
## 1380 0.05147059 0.17647059 10
## 1381 0.05147059 0.17647059 10
## 1382 0.05147059 0.17647059 10
## 1383 0.05147059 0.17647059 10
## 1384 0.05147059 0.17647059 10
## 1385 0.05147059 0.17647059 10
## 1386 0.05147059 0.17647059 10
## 1387 0.05147059 0.17647059 10
## 1388 0.05147059 0.17647059 10
## 1389 0.05147059 0.17647059 10
## 1390 0.05147059 0.17647059 10
## 1391 0.05147059 0.17647059 10
## 1392 0.05147059 0.17647059 10
## 1393 0.00000000 0.11111111 10
## 1394 0.00000000 0.11111111 10
## 1395 0.00000000 0.11111111 10
## 1396 0.00000000 0.11111111 10
## 1397 0.00000000 0.11111111 10
## 1398 0.00000000 0.11111111 10
## 1399 0.00000000 0.11111111 10
## 1400 0.00000000 0.11111111 10
## 1401 0.00000000 0.11111111 10
## 1402 0.00000000 0.11111111 10
## 1403 0.00000000 0.11111111 10
## 1404 0.00000000 0.11111111 10
## 1405 0.00000000 0.11111111 10
## 1406 0.00000000 0.11111111 10
## 1407 0.00000000 0.11111111 10
## 1408 0.00000000 0.11111111 10
## 1409 0.00000000 0.11111111 10
## 1410 0.00000000 0.11111111 10
## 1411 0.00000000 0.11111111 10
## 1412 0.00000000 0.11111111 10
## 1413 0.00000000 0.11111111 10
## 1414 0.00000000 0.11111111 10
## 1415 0.00000000 0.11111111 10
## 1416 0.00000000 0.11111111 10
## 1417 0.20000000 0.20000000 9
## 1418 0.20000000 0.20000000 9
## 1419 0.20000000 0.20000000 9
## 1420 0.20000000 0.20000000 9
## 1421 0.20000000 0.20000000 9
## 1422 0.20000000 0.20000000 9
## 1423 0.20000000 0.20000000 9
## 1424 0.20000000 0.20000000 9
## 1425 0.20000000 0.20000000 9
## 1426 0.20000000 0.20000000 9
## 1427 0.20000000 0.20000000 9
## 1428 0.20000000 0.20000000 9
## 1429 0.20000000 0.20000000 9
## 1430 0.20000000 0.20000000 9
## 1431 0.20000000 0.20000000 9
## 1432 0.20000000 0.20000000 9
## 1433 0.20000000 0.20000000 9
## 1434 0.20000000 0.20000000 9
## 1435 0.20000000 0.20000000 9
## 1436 0.20000000 0.20000000 9
## 1437 0.20000000 0.20000000 9
## 1438 0.20000000 0.20000000 9
## 1439 0.20000000 0.20000000 9
## 1440 0.20000000 0.20000000 9
## 1441 0.26666667 0.60000000 8
## 1442 0.26666667 0.60000000 8
## 1443 0.26666667 0.60000000 8
## 1444 0.26666667 0.60000000 8
## 1445 0.26666667 0.60000000 8
## 1446 0.26666667 0.60000000 8
## 1447 0.26666667 0.60000000 8
## 1448 0.26666667 0.60000000 8
## 1449 0.26666667 0.60000000 8
## 1450 0.26666667 0.60000000 8
## 1451 0.26666667 0.60000000 8
## 1452 0.26666667 0.60000000 8
## 1453 0.26666667 0.60000000 8
## 1454 0.26666667 0.60000000 8
## 1455 0.26666667 0.60000000 8
## 1456 0.26666667 0.60000000 8
## 1457 0.26666667 0.60000000 8
## 1458 0.26666667 0.60000000 8
## 1459 0.26666667 0.60000000 8
## 1460 0.26666667 0.60000000 8
## 1461 0.26666667 0.60000000 8
## 1462 0.26666667 0.60000000 8
## 1463 0.26666667 0.60000000 8
## 1464 0.26666667 0.60000000 8
## 1465 0.22222222 0.55555556 7
## 1466 0.22222222 0.55555556 7
## 1467 0.22222222 0.55555556 7
## 1468 0.22222222 0.55555556 7
## 1469 0.22222222 0.55555556 7
## 1470 0.22222222 0.55555556 7
## 1471 0.22222222 0.55555556 7
## 1472 0.22222222 0.55555556 7
## 1473 0.22222222 0.55555556 7
## 1474 0.22222222 0.55555556 7
## 1475 0.22222222 0.55555556 7
## 1476 0.22222222 0.55555556 7
## 1477 0.22222222 0.55555556 7
## 1478 0.22222222 0.55555556 7
## 1479 0.22222222 0.55555556 7
## 1480 0.22222222 0.55555556 7
## 1481 0.22222222 0.55555556 7
## 1482 0.22222222 0.55555556 7
## 1483 0.22222222 0.55555556 7
## 1484 0.22222222 0.55555556 7
## 1485 0.22222222 0.55555556 7
## 1486 0.22222222 0.55555556 7
## 1487 0.22222222 0.55555556 7
## 1488 0.22222222 0.55555556 7
## 1489 0.77777778 0.77777778 8
## 1490 0.77777778 0.77777778 8
## 1491 0.77777778 0.77777778 8
## 1492 0.77777778 0.77777778 8
## 1493 0.77777778 0.77777778 8
## 1494 0.77777778 0.77777778 8
## 1495 0.77777778 0.77777778 8
## 1496 0.77777778 0.77777778 8
## 1497 0.77777778 0.77777778 8
## 1498 0.77777778 0.77777778 8
## 1499 0.77777778 0.77777778 8
## 1500 0.77777778 0.77777778 8
## 1501 0.77777778 0.77777778 8
## 1502 0.77777778 0.77777778 8
## 1503 0.77777778 0.77777778 8
## 1504 0.77777778 0.77777778 8
## 1505 0.77777778 0.77777778 8
## 1506 0.77777778 0.77777778 8
## 1507 0.77777778 0.77777778 8
## 1508 0.77777778 0.77777778 8
## 1509 0.77777778 0.77777778 8
## 1510 0.77777778 0.77777778 8
## 1511 0.77777778 0.77777778 8
## 1512 0.77777778 0.77777778 8
## 1513 0.75000000 0.75000000 7
## 1514 0.75000000 0.75000000 7
## 1515 0.75000000 0.75000000 7
## 1516 0.75000000 0.75000000 7
## 1517 0.75000000 0.75000000 7
## 1518 0.75000000 0.75000000 7
## 1519 0.75000000 0.75000000 7
## 1520 0.75000000 0.75000000 7
## 1521 0.75000000 0.75000000 7
## 1522 0.75000000 0.75000000 7
## 1523 0.75000000 0.75000000 7
## 1524 0.75000000 0.75000000 7
## 1525 0.75000000 0.75000000 7
## 1526 0.75000000 0.75000000 7
## 1527 0.75000000 0.75000000 7
## 1528 0.75000000 0.75000000 7
## 1529 0.75000000 0.75000000 7
## 1530 0.75000000 0.75000000 7
## 1531 0.75000000 0.75000000 7
## 1532 0.75000000 0.75000000 7
## 1533 0.75000000 0.75000000 7
## 1534 0.75000000 0.75000000 7
## 1535 0.75000000 0.75000000 7
## 1536 0.75000000 0.75000000 7
## 1537 0.00000000 0.00000000 11
## 1538 0.00000000 0.00000000 11
## 1539 0.00000000 0.00000000 11
## 1540 0.00000000 0.00000000 11
## 1541 0.00000000 0.00000000 11
## 1542 0.00000000 0.00000000 11
## 1543 0.00000000 0.00000000 11
## 1544 0.00000000 0.00000000 11
## 1545 0.00000000 0.00000000 11
## 1546 0.00000000 0.00000000 11
## 1547 0.00000000 0.00000000 11
## 1548 0.00000000 0.00000000 11
## 1549 0.00000000 0.00000000 11
## 1550 0.00000000 0.00000000 11
## 1551 0.00000000 0.00000000 11
## 1552 0.00000000 0.00000000 11
## 1553 0.00000000 0.00000000 11
## 1554 0.00000000 0.00000000 11
## 1555 0.00000000 0.00000000 11
## 1556 0.00000000 0.00000000 11
## 1557 0.00000000 0.00000000 11
## 1558 0.00000000 0.00000000 11
## 1559 0.00000000 0.00000000 11
## 1560 0.00000000 0.00000000 11
## 1561 0.05714286 0.20000000 9
## 1562 0.05714286 0.20000000 9
## 1563 0.05714286 0.20000000 9
## 1564 0.05714286 0.20000000 9
## 1565 0.05714286 0.20000000 9
## 1566 0.05714286 0.20000000 9
## 1567 0.05714286 0.20000000 9
## 1568 0.05714286 0.20000000 9
## 1569 0.05714286 0.20000000 9
## 1570 0.05714286 0.20000000 9
## 1571 0.05714286 0.20000000 9
## 1572 0.05714286 0.20000000 9
## 1573 0.05714286 0.20000000 9
## 1574 0.05714286 0.20000000 9
## 1575 0.05714286 0.20000000 9
## 1576 0.05714286 0.20000000 9
## 1577 0.05714286 0.20000000 9
## 1578 0.05714286 0.20000000 9
## 1579 0.05714286 0.20000000 9
## 1580 0.05714286 0.20000000 9
## 1581 0.05714286 0.20000000 9
## 1582 0.05714286 0.20000000 9
## 1583 0.05714286 0.20000000 9
## 1584 0.05714286 0.20000000 9
## 1585 0.05147059 0.17647059 10
## 1586 0.05147059 0.17647059 10
## 1587 0.05147059 0.17647059 10
## 1588 0.05147059 0.17647059 10
## 1589 0.05147059 0.17647059 10
## 1590 0.05147059 0.17647059 10
## 1591 0.05147059 0.17647059 10
## 1592 0.05147059 0.17647059 10
## 1593 0.05147059 0.17647059 10
## 1594 0.05147059 0.17647059 10
## 1595 0.05147059 0.17647059 10
## 1596 0.05147059 0.17647059 10
## 1597 0.05147059 0.17647059 10
## 1598 0.05147059 0.17647059 10
## 1599 0.05147059 0.17647059 10
## 1600 0.05147059 0.17647059 10
## 1601 0.05147059 0.17647059 10
## 1602 0.05147059 0.17647059 10
## 1603 0.05147059 0.17647059 10
## 1604 0.05147059 0.17647059 10
## 1605 0.05147059 0.17647059 10
## 1606 0.05147059 0.17647059 10
## 1607 0.05147059 0.17647059 10
## 1608 0.05147059 0.17647059 10
## 1609 0.00000000 0.16666667 7
## 1610 0.00000000 0.16666667 7
## 1611 0.00000000 0.16666667 7
## 1612 0.00000000 0.16666667 7
## 1613 0.00000000 0.16666667 7
## 1614 0.00000000 0.16666667 7
## 1615 0.00000000 0.16666667 7
## 1616 0.00000000 0.16666667 7
## 1617 0.00000000 0.16666667 7
## 1618 0.00000000 0.16666667 7
## 1619 0.00000000 0.16666667 7
## 1620 0.00000000 0.16666667 7
## 1621 0.00000000 0.16666667 7
## 1622 0.00000000 0.16666667 7
## 1623 0.00000000 0.16666667 7
## 1624 0.00000000 0.16666667 7
## 1625 0.00000000 0.16666667 7
## 1626 0.00000000 0.16666667 7
## 1627 0.00000000 0.16666667 7
## 1628 0.00000000 0.16666667 7
## 1629 0.00000000 0.16666667 7
## 1630 0.00000000 0.16666667 7
## 1631 0.00000000 0.16666667 7
## 1632 0.00000000 0.16666667 7
## 1633 0.11111111 0.77777778 8
## 1634 0.11111111 0.77777778 8
## 1635 0.11111111 0.77777778 8
## 1636 0.11111111 0.77777778 8
## 1637 0.11111111 0.77777778 8
## 1638 0.11111111 0.77777778 8
## 1639 0.11111111 0.77777778 8
## 1640 0.11111111 0.77777778 8
## 1641 0.11111111 0.77777778 8
## 1642 0.11111111 0.77777778 8
## 1643 0.11111111 0.77777778 8
## 1644 0.11111111 0.77777778 8
## 1645 0.11111111 0.77777778 8
## 1646 0.11111111 0.77777778 8
## 1647 0.11111111 0.77777778 8
## 1648 0.11111111 0.77777778 8
## 1649 0.11111111 0.77777778 8
## 1650 0.11111111 0.77777778 8
## 1651 0.11111111 0.77777778 8
## 1652 0.11111111 0.77777778 8
## 1653 0.11111111 0.77777778 8
## 1654 0.11111111 0.77777778 8
## 1655 0.11111111 0.77777778 8
## 1656 0.11111111 0.77777778 8
## 1657 0.08333333 0.75000000 7
## 1658 0.08333333 0.75000000 7
## 1659 0.08333333 0.75000000 7
## 1660 0.08333333 0.75000000 7
## 1661 0.08333333 0.75000000 7
## 1662 0.08333333 0.75000000 7
## 1663 0.08333333 0.75000000 7
## 1664 0.08333333 0.75000000 7
## 1665 0.08333333 0.75000000 7
## 1666 0.08333333 0.75000000 7
## 1667 0.08333333 0.75000000 7
## 1668 0.08333333 0.75000000 7
## 1669 0.08333333 0.75000000 7
## 1670 0.08333333 0.75000000 7
## 1671 0.08333333 0.75000000 7
## 1672 0.08333333 0.75000000 7
## 1673 0.08333333 0.75000000 7
## 1674 0.08333333 0.75000000 7
## 1675 0.08333333 0.75000000 7
## 1676 0.08333333 0.75000000 7
## 1677 0.08333333 0.75000000 7
## 1678 0.08333333 0.75000000 7
## 1679 0.08333333 0.75000000 7
## 1680 0.08333333 0.75000000 7
## 1681 0.71428571 0.71428571 6
## 1682 0.71428571 0.71428571 6
## 1683 0.71428571 0.71428571 6
## 1684 0.71428571 0.71428571 6
## 1685 0.71428571 0.71428571 6
## 1686 0.71428571 0.71428571 6
## 1687 0.71428571 0.71428571 6
## 1688 0.71428571 0.71428571 6
## 1689 0.71428571 0.71428571 6
## 1690 0.71428571 0.71428571 6
## 1691 0.71428571 0.71428571 6
## 1692 0.71428571 0.71428571 6
## 1693 0.71428571 0.71428571 6
## 1694 0.71428571 0.71428571 6
## 1695 0.71428571 0.71428571 6
## 1696 0.71428571 0.71428571 6
## 1697 0.71428571 0.71428571 6
## 1698 0.71428571 0.71428571 6
## 1699 0.71428571 0.71428571 6
## 1700 0.71428571 0.71428571 6
## 1701 0.71428571 0.71428571 6
## 1702 0.71428571 0.71428571 6
## 1703 0.71428571 0.71428571 6
## 1704 0.71428571 0.71428571 6
## 1705 0.66666667 0.66666667 5
## 1706 0.66666667 0.66666667 5
## 1707 0.66666667 0.66666667 5
## 1708 0.66666667 0.66666667 5
## 1709 0.66666667 0.66666667 5
## 1710 0.66666667 0.66666667 5
## 1711 0.66666667 0.66666667 5
## 1712 0.66666667 0.66666667 5
## 1713 0.66666667 0.66666667 5
## 1714 0.66666667 0.66666667 5
## 1715 0.66666667 0.66666667 5
## 1716 0.66666667 0.66666667 5
## 1717 0.66666667 0.66666667 5
## 1718 0.66666667 0.66666667 5
## 1719 0.66666667 0.66666667 5
## 1720 0.66666667 0.66666667 5
## 1721 0.66666667 0.66666667 5
## 1722 0.66666667 0.66666667 5
## 1723 0.66666667 0.66666667 5
## 1724 0.66666667 0.66666667 5
## 1725 0.66666667 0.66666667 5
## 1726 0.66666667 0.66666667 5
## 1727 0.66666667 0.66666667 5
## 1728 0.66666667 0.66666667 5
## 1729 0.00000000 0.00000000 11
## 1730 0.00000000 0.00000000 11
## 1731 0.00000000 0.00000000 11
## 1732 0.00000000 0.00000000 11
## 1733 0.00000000 0.00000000 11
## 1734 0.00000000 0.00000000 11
## 1735 0.00000000 0.00000000 11
## 1736 0.00000000 0.00000000 11
## 1737 0.00000000 0.00000000 11
## 1738 0.00000000 0.00000000 11
## 1739 0.00000000 0.00000000 11
## 1740 0.00000000 0.00000000 11
## 1741 0.00000000 0.00000000 11
## 1742 0.00000000 0.00000000 11
## 1743 0.00000000 0.00000000 11
## 1744 0.00000000 0.00000000 11
## 1745 0.00000000 0.00000000 11
## 1746 0.00000000 0.00000000 11
## 1747 0.00000000 0.00000000 11
## 1748 0.00000000 0.00000000 11
## 1749 0.00000000 0.00000000 11
## 1750 0.00000000 0.00000000 11
## 1751 0.00000000 0.00000000 11
## 1752 0.00000000 0.00000000 11
## 1753 0.05882353 0.05882353 9
## 1754 0.05882353 0.05882353 9
## 1755 0.05882353 0.05882353 9
## 1756 0.05882353 0.05882353 9
## 1757 0.05882353 0.05882353 9
## 1758 0.05882353 0.05882353 9
## 1759 0.05882353 0.05882353 9
## 1760 0.05882353 0.05882353 9
## 1761 0.05882353 0.05882353 9
## 1762 0.05882353 0.05882353 9
## 1763 0.05882353 0.05882353 9
## 1764 0.05882353 0.05882353 9
## 1765 0.05882353 0.05882353 9
## 1766 0.05882353 0.05882353 9
## 1767 0.05882353 0.05882353 9
## 1768 0.05882353 0.05882353 9
## 1769 0.05882353 0.05882353 9
## 1770 0.05882353 0.05882353 9
## 1771 0.05882353 0.05882353 9
## 1772 0.05882353 0.05882353 9
## 1773 0.05882353 0.05882353 9
## 1774 0.05882353 0.05882353 9
## 1775 0.05882353 0.05882353 9
## 1776 0.05882353 0.05882353 9
## 1777 0.10714286 0.25000000 10
## 1778 0.10714286 0.25000000 10
## 1779 0.10714286 0.25000000 10
## 1780 0.10714286 0.25000000 10
## 1781 0.10714286 0.25000000 10
## 1782 0.10714286 0.25000000 10
## 1783 0.10714286 0.25000000 10
## 1784 0.10714286 0.25000000 10
## 1785 0.10714286 0.25000000 10
## 1786 0.10714286 0.25000000 10
## 1787 0.10714286 0.25000000 10
## 1788 0.10714286 0.25000000 10
## 1789 0.10714286 0.25000000 10
## 1790 0.10714286 0.25000000 10
## 1791 0.10714286 0.25000000 10
## 1792 0.10714286 0.25000000 10
## 1793 0.10714286 0.25000000 10
## 1794 0.10714286 0.25000000 10
## 1795 0.10714286 0.25000000 10
## 1796 0.10714286 0.25000000 10
## 1797 0.10714286 0.25000000 10
## 1798 0.10714286 0.25000000 10
## 1799 0.10714286 0.25000000 10
## 1800 0.10714286 0.25000000 10
## 1801 0.14285714 0.14285714 8
## 1802 0.14285714 0.14285714 8
## 1803 0.14285714 0.14285714 8
## 1804 0.14285714 0.14285714 8
## 1805 0.14285714 0.14285714 8
## 1806 0.14285714 0.14285714 8
## 1807 0.14285714 0.14285714 8
## 1808 0.14285714 0.14285714 8
## 1809 0.14285714 0.14285714 8
## 1810 0.14285714 0.14285714 8
## 1811 0.14285714 0.14285714 8
## 1812 0.14285714 0.14285714 8
## 1813 0.14285714 0.14285714 8
## 1814 0.14285714 0.14285714 8
## 1815 0.14285714 0.14285714 8
## 1816 0.14285714 0.14285714 8
## 1817 0.14285714 0.14285714 8
## 1818 0.14285714 0.14285714 8
## 1819 0.14285714 0.14285714 8
## 1820 0.14285714 0.14285714 8
## 1821 0.14285714 0.14285714 8
## 1822 0.14285714 0.14285714 8
## 1823 0.14285714 0.14285714 8
## 1824 0.14285714 0.14285714 8
## 1825 0.30303030 0.63636364 9
## 1826 0.30303030 0.63636364 9
## 1827 0.30303030 0.63636364 9
## 1828 0.30303030 0.63636364 9
## 1829 0.30303030 0.63636364 9
## 1830 0.30303030 0.63636364 9
## 1831 0.30303030 0.63636364 9
## 1832 0.30303030 0.63636364 9
## 1833 0.30303030 0.63636364 9
## 1834 0.30303030 0.63636364 9
## 1835 0.30303030 0.63636364 9
## 1836 0.30303030 0.63636364 9
## 1837 0.30303030 0.63636364 9
## 1838 0.30303030 0.63636364 9
## 1839 0.30303030 0.63636364 9
## 1840 0.30303030 0.63636364 9
## 1841 0.30303030 0.63636364 9
## 1842 0.30303030 0.63636364 9
## 1843 0.30303030 0.63636364 9
## 1844 0.30303030 0.63636364 9
## 1845 0.30303030 0.63636364 9
## 1846 0.30303030 0.63636364 9
## 1847 0.30303030 0.63636364 9
## 1848 0.30303030 0.63636364 9
## 1849 0.30303030 0.63636364 9
## 1850 0.30303030 0.63636364 9
## 1851 0.30303030 0.63636364 9
## 1852 0.30303030 0.63636364 9
## 1853 0.30303030 0.63636364 9
## 1854 0.30303030 0.63636364 9
## 1855 0.30303030 0.63636364 9
## 1856 0.30303030 0.63636364 9
## 1857 0.30303030 0.63636364 9
## 1858 0.30303030 0.63636364 9
## 1859 0.30303030 0.63636364 9
## 1860 0.30303030 0.63636364 9
## 1861 0.30303030 0.63636364 9
## 1862 0.30303030 0.63636364 9
## 1863 0.30303030 0.63636364 9
## 1864 0.30303030 0.63636364 9
## 1865 0.30303030 0.63636364 9
## 1866 0.30303030 0.63636364 9
## 1867 0.30303030 0.63636364 9
## 1868 0.30303030 0.63636364 9
## 1869 0.30303030 0.63636364 9
## 1870 0.30303030 0.63636364 9
## 1871 0.30303030 0.63636364 9
## 1872 0.30303030 0.63636364 9
## 1873 0.77777778 0.77777778 8
## 1874 0.77777778 0.77777778 8
## 1875 0.77777778 0.77777778 8
## 1876 0.77777778 0.77777778 8
## 1877 0.77777778 0.77777778 8
## 1878 0.77777778 0.77777778 8
## 1879 0.77777778 0.77777778 8
## 1880 0.77777778 0.77777778 8
## 1881 0.77777778 0.77777778 8
## 1882 0.77777778 0.77777778 8
## 1883 0.77777778 0.77777778 8
## 1884 0.77777778 0.77777778 8
## 1885 0.77777778 0.77777778 8
## 1886 0.77777778 0.77777778 8
## 1887 0.77777778 0.77777778 8
## 1888 0.77777778 0.77777778 8
## 1889 0.77777778 0.77777778 8
## 1890 0.77777778 0.77777778 8
## 1891 0.77777778 0.77777778 8
## 1892 0.77777778 0.77777778 8
## 1893 0.77777778 0.77777778 8
## 1894 0.77777778 0.77777778 8
## 1895 0.77777778 0.77777778 8
## 1896 0.77777778 0.77777778 8
## 1897 0.77777778 0.77777778 8
## 1898 0.77777778 0.77777778 8
## 1899 0.77777778 0.77777778 8
## 1900 0.77777778 0.77777778 8
## 1901 0.77777778 0.77777778 8
## 1902 0.77777778 0.77777778 8
## 1903 0.77777778 0.77777778 8
## 1904 0.77777778 0.77777778 8
## 1905 0.77777778 0.77777778 8
## 1906 0.77777778 0.77777778 8
## 1907 0.77777778 0.77777778 8
## 1908 0.77777778 0.77777778 8
## 1909 0.77777778 0.77777778 8
## 1910 0.77777778 0.77777778 8
## 1911 0.77777778 0.77777778 8
## 1912 0.77777778 0.77777778 8
## 1913 0.77777778 0.77777778 8
## 1914 0.77777778 0.77777778 8
## 1915 0.77777778 0.77777778 8
## 1916 0.77777778 0.77777778 8
## 1917 0.77777778 0.77777778 8
## 1918 0.77777778 0.77777778 8
## 1919 0.77777778 0.77777778 8
## 1920 0.77777778 0.77777778 8
## 1921 0.00000000 0.00000000 11
## 1922 0.00000000 0.00000000 11
## 1923 0.00000000 0.00000000 11
## 1924 0.00000000 0.00000000 11
## 1925 0.00000000 0.00000000 11
## 1926 0.00000000 0.00000000 11
## 1927 0.00000000 0.00000000 11
## 1928 0.00000000 0.00000000 11
## 1929 0.00000000 0.00000000 11
## 1930 0.00000000 0.00000000 11
## 1931 0.00000000 0.00000000 11
## 1932 0.00000000 0.00000000 11
## 1933 0.00000000 0.00000000 11
## 1934 0.00000000 0.00000000 11
## 1935 0.00000000 0.00000000 11
## 1936 0.00000000 0.00000000 11
## 1937 0.00000000 0.00000000 11
## 1938 0.00000000 0.00000000 11
## 1939 0.00000000 0.00000000 11
## 1940 0.00000000 0.00000000 11
## 1941 0.00000000 0.00000000 11
## 1942 0.00000000 0.00000000 11
## 1943 0.00000000 0.00000000 11
## 1944 0.00000000 0.00000000 11
## 1945 0.14285714 0.14285714 8
## 1946 0.14285714 0.14285714 8
## 1947 0.14285714 0.14285714 8
## 1948 0.14285714 0.14285714 8
## 1949 0.14285714 0.14285714 8
## 1950 0.14285714 0.14285714 8
## 1951 0.14285714 0.14285714 8
## 1952 0.14285714 0.14285714 8
## 1953 0.14285714 0.14285714 8
## 1954 0.14285714 0.14285714 8
## 1955 0.14285714 0.14285714 8
## 1956 0.14285714 0.14285714 8
## 1957 0.14285714 0.14285714 8
## 1958 0.14285714 0.14285714 8
## 1959 0.14285714 0.14285714 8
## 1960 0.14285714 0.14285714 8
## 1961 0.14285714 0.14285714 8
## 1962 0.14285714 0.14285714 8
## 1963 0.14285714 0.14285714 8
## 1964 0.14285714 0.14285714 8
## 1965 0.14285714 0.14285714 8
## 1966 0.14285714 0.14285714 8
## 1967 0.14285714 0.14285714 8
## 1968 0.14285714 0.14285714 8
## 1969 0.14285714 0.14285714 8
## 1970 0.14285714 0.14285714 8
## 1971 0.14285714 0.14285714 8
## 1972 0.14285714 0.14285714 8
## 1973 0.14285714 0.14285714 8
## 1974 0.14285714 0.14285714 8
## 1975 0.14285714 0.14285714 8
## 1976 0.14285714 0.14285714 8
## 1977 0.14285714 0.14285714 8
## 1978 0.14285714 0.14285714 8
## 1979 0.14285714 0.14285714 8
## 1980 0.14285714 0.14285714 8
## 1981 0.14285714 0.14285714 8
## 1982 0.14285714 0.14285714 8
## 1983 0.14285714 0.14285714 8
## 1984 0.14285714 0.14285714 8
## 1985 0.14285714 0.14285714 8
## 1986 0.14285714 0.14285714 8
## 1987 0.14285714 0.14285714 8
## 1988 0.14285714 0.14285714 8
## 1989 0.14285714 0.14285714 8
## 1990 0.14285714 0.14285714 8
## 1991 0.14285714 0.14285714 8
## 1992 0.14285714 0.14285714 8
## 1993 0.33333333 0.33333333 8
## 1994 0.33333333 0.33333333 8
## 1995 0.33333333 0.33333333 8
## 1996 0.33333333 0.33333333 8
## 1997 0.33333333 0.33333333 8
## 1998 0.33333333 0.33333333 8
## 1999 0.33333333 0.33333333 8
## 2000 0.33333333 0.33333333 8
## 2001 0.33333333 0.33333333 8
## 2002 0.33333333 0.33333333 8
## 2003 0.33333333 0.33333333 8
## 2004 0.33333333 0.33333333 8
## 2005 0.33333333 0.33333333 8
## 2006 0.33333333 0.33333333 8
## 2007 0.33333333 0.33333333 8
## 2008 0.33333333 0.33333333 8
## 2009 0.33333333 0.33333333 8
## 2010 0.33333333 0.33333333 8
## 2011 0.33333333 0.33333333 8
## 2012 0.33333333 0.33333333 8
## 2013 0.33333333 0.33333333 8
## 2014 0.33333333 0.33333333 8
## 2015 0.33333333 0.33333333 8
## 2016 0.33333333 0.33333333 8
## 2017 0.25000000 0.50000000 9
## 2018 0.25000000 0.50000000 9
## 2019 0.25000000 0.50000000 9
## 2020 0.25000000 0.50000000 9
## 2021 0.25000000 0.50000000 9
## 2022 0.25000000 0.50000000 9
## 2023 0.25000000 0.50000000 9
## 2024 0.25000000 0.50000000 9
## 2025 0.25000000 0.50000000 9
## 2026 0.25000000 0.50000000 9
## 2027 0.25000000 0.50000000 9
## 2028 0.25000000 0.50000000 9
## 2029 0.25000000 0.50000000 9
## 2030 0.25000000 0.50000000 9
## 2031 0.25000000 0.50000000 9
## 2032 0.25000000 0.50000000 9
## 2033 0.25000000 0.50000000 9
## 2034 0.25000000 0.50000000 9
## 2035 0.25000000 0.50000000 9
## 2036 0.25000000 0.50000000 9
## 2037 0.25000000 0.50000000 9
## 2038 0.25000000 0.50000000 9
## 2039 0.25000000 0.50000000 9
## 2040 0.25000000 0.50000000 9
## 2041 0.25000000 0.75000000 7
## 2042 0.25000000 0.75000000 7
## 2043 0.25000000 0.75000000 7
## 2044 0.25000000 0.75000000 7
## 2045 0.25000000 0.75000000 7
## 2046 0.25000000 0.75000000 7
## 2047 0.25000000 0.75000000 7
## 2048 0.25000000 0.75000000 7
## 2049 0.25000000 0.75000000 7
## 2050 0.25000000 0.75000000 7
## 2051 0.25000000 0.75000000 7
## 2052 0.25000000 0.75000000 7
## 2053 0.25000000 0.75000000 7
## 2054 0.25000000 0.75000000 7
## 2055 0.25000000 0.75000000 7
## 2056 0.25000000 0.75000000 7
## 2057 0.25000000 0.75000000 7
## 2058 0.25000000 0.75000000 7
## 2059 0.25000000 0.75000000 7
## 2060 0.25000000 0.75000000 7
## 2061 0.25000000 0.75000000 7
## 2062 0.25000000 0.75000000 7
## 2063 0.25000000 0.75000000 7
## 2064 0.25000000 0.75000000 7
## 2065 0.40000000 0.40000000 7
## 2066 0.40000000 0.40000000 7
## 2067 0.40000000 0.40000000 7
## 2068 0.40000000 0.40000000 7
## 2069 0.40000000 0.40000000 7
## 2070 0.40000000 0.40000000 7
## 2071 0.40000000 0.40000000 7
## 2072 0.40000000 0.40000000 7
## 2073 0.40000000 0.40000000 7
## 2074 0.40000000 0.40000000 7
## 2075 0.40000000 0.40000000 7
## 2076 0.40000000 0.40000000 7
## 2077 0.40000000 0.40000000 7
## 2078 0.40000000 0.40000000 7
## 2079 0.40000000 0.40000000 7
## 2080 0.40000000 0.40000000 7
## 2081 0.40000000 0.40000000 7
## 2082 0.40000000 0.40000000 7
## 2083 0.40000000 0.40000000 7
## 2084 0.40000000 0.40000000 7
## 2085 0.40000000 0.40000000 7
## 2086 0.40000000 0.40000000 7
## 2087 0.40000000 0.40000000 7
## 2088 0.40000000 0.40000000 7
## 2089 0.31818182 0.81818182 10
## 2090 0.31818182 0.81818182 10
## 2091 0.31818182 0.81818182 10
## 2092 0.31818182 0.81818182 10
## 2093 0.31818182 0.81818182 10
## 2094 0.31818182 0.81818182 10
## 2095 0.31818182 0.81818182 10
## 2096 0.31818182 0.81818182 10
## 2097 0.31818182 0.81818182 10
## 2098 0.31818182 0.81818182 10
## 2099 0.31818182 0.81818182 10
## 2100 0.31818182 0.81818182 10
## 2101 0.31818182 0.81818182 10
## 2102 0.31818182 0.81818182 10
## 2103 0.31818182 0.81818182 10
## 2104 0.31818182 0.81818182 10
## 2105 0.31818182 0.81818182 10
## 2106 0.31818182 0.81818182 10
## 2107 0.31818182 0.81818182 10
## 2108 0.31818182 0.81818182 10
## 2109 0.31818182 0.81818182 10
## 2110 0.31818182 0.81818182 10
## 2111 0.31818182 0.81818182 10
## 2112 0.31818182 0.81818182 10
## 2113 0.00000000 0.00000000 11
## 2114 0.00000000 0.00000000 11
## 2115 0.00000000 0.00000000 11
## 2116 0.00000000 0.00000000 11
## 2117 0.00000000 0.00000000 11
## 2118 0.00000000 0.00000000 11
## 2119 0.00000000 0.00000000 11
## 2120 0.00000000 0.00000000 11
## 2121 0.00000000 0.00000000 11
## 2122 0.00000000 0.00000000 11
## 2123 0.00000000 0.00000000 11
## 2124 0.00000000 0.00000000 11
## 2125 0.00000000 0.00000000 11
## 2126 0.00000000 0.00000000 11
## 2127 0.00000000 0.00000000 11
## 2128 0.00000000 0.00000000 11
## 2129 0.00000000 0.00000000 11
## 2130 0.00000000 0.00000000 11
## 2131 0.00000000 0.00000000 11
## 2132 0.00000000 0.00000000 11
## 2133 0.00000000 0.00000000 11
## 2134 0.00000000 0.00000000 11
## 2135 0.00000000 0.00000000 11
## 2136 0.00000000 0.00000000 11
## 2137 0.16666667 0.33333333 10
## 2138 0.16666667 0.33333333 10
## 2139 0.16666667 0.33333333 10
## 2140 0.16666667 0.33333333 10
## 2141 0.16666667 0.33333333 10
## 2142 0.16666667 0.33333333 10
## 2143 0.16666667 0.33333333 10
## 2144 0.16666667 0.33333333 10
## 2145 0.16666667 0.33333333 10
## 2146 0.16666667 0.33333333 10
## 2147 0.16666667 0.33333333 10
## 2148 0.16666667 0.33333333 10
## 2149 0.16666667 0.33333333 10
## 2150 0.16666667 0.33333333 10
## 2151 0.16666667 0.33333333 10
## 2152 0.16666667 0.33333333 10
## 2153 0.16666667 0.33333333 10
## 2154 0.16666667 0.33333333 10
## 2155 0.16666667 0.33333333 10
## 2156 0.16666667 0.33333333 10
## 2157 0.16666667 0.33333333 10
## 2158 0.16666667 0.33333333 10
## 2159 0.16666667 0.33333333 10
## 2160 0.16666667 0.33333333 10
## 2161 0.09090909 0.09090909 6
## 2162 0.09090909 0.09090909 6
## 2163 0.09090909 0.09090909 6
## 2164 0.09090909 0.09090909 6
## 2165 0.09090909 0.09090909 6
## 2166 0.09090909 0.09090909 6
## 2167 0.09090909 0.09090909 6
## 2168 0.09090909 0.09090909 6
## 2169 0.09090909 0.09090909 6
## 2170 0.09090909 0.09090909 6
## 2171 0.09090909 0.09090909 6
## 2172 0.09090909 0.09090909 6
## 2173 0.09090909 0.09090909 6
## 2174 0.09090909 0.09090909 6
## 2175 0.09090909 0.09090909 6
## 2176 0.09090909 0.09090909 6
## 2177 0.09090909 0.09090909 6
## 2178 0.09090909 0.09090909 6
## 2179 0.09090909 0.09090909 6
## 2180 0.09090909 0.09090909 6
## 2181 0.09090909 0.09090909 6
## 2182 0.09090909 0.09090909 6
## 2183 0.09090909 0.09090909 6
## 2184 0.09090909 0.09090909 6
## 2185 0.33333333 0.33333333 8
## 2186 0.33333333 0.33333333 8
## 2187 0.33333333 0.33333333 8
## 2188 0.33333333 0.33333333 8
## 2189 0.33333333 0.33333333 8
## 2190 0.33333333 0.33333333 8
## 2191 0.33333333 0.33333333 8
## 2192 0.33333333 0.33333333 8
## 2193 0.33333333 0.33333333 8
## 2194 0.33333333 0.33333333 8
## 2195 0.33333333 0.33333333 8
## 2196 0.33333333 0.33333333 8
## 2197 0.33333333 0.33333333 8
## 2198 0.33333333 0.33333333 8
## 2199 0.33333333 0.33333333 8
## 2200 0.33333333 0.33333333 8
## 2201 0.33333333 0.33333333 8
## 2202 0.33333333 0.33333333 8
## 2203 0.33333333 0.33333333 8
## 2204 0.33333333 0.33333333 8
## 2205 0.33333333 0.33333333 8
## 2206 0.33333333 0.33333333 8
## 2207 0.33333333 0.33333333 8
## 2208 0.33333333 0.33333333 8
## 2209 0.08333333 0.33333333 6
## 2210 0.08333333 0.33333333 6
## 2211 0.08333333 0.33333333 6
## 2212 0.08333333 0.33333333 6
## 2213 0.08333333 0.33333333 6
## 2214 0.08333333 0.33333333 6
## 2215 0.08333333 0.33333333 6
## 2216 0.08333333 0.33333333 6
## 2217 0.08333333 0.33333333 6
## 2218 0.08333333 0.33333333 6
## 2219 0.08333333 0.33333333 6
## 2220 0.08333333 0.33333333 6
## 2221 0.08333333 0.33333333 6
## 2222 0.08333333 0.33333333 6
## 2223 0.08333333 0.33333333 6
## 2224 0.08333333 0.33333333 6
## 2225 0.08333333 0.33333333 6
## 2226 0.08333333 0.33333333 6
## 2227 0.08333333 0.33333333 6
## 2228 0.08333333 0.33333333 6
## 2229 0.08333333 0.33333333 6
## 2230 0.08333333 0.33333333 6
## 2231 0.08333333 0.33333333 6
## 2232 0.08333333 0.33333333 6
## 2233 0.60000000 0.60000000 8
## 2234 0.60000000 0.60000000 8
## 2235 0.60000000 0.60000000 8
## 2236 0.60000000 0.60000000 8
## 2237 0.60000000 0.60000000 8
## 2238 0.60000000 0.60000000 8
## 2239 0.60000000 0.60000000 8
## 2240 0.60000000 0.60000000 8
## 2241 0.60000000 0.60000000 8
## 2242 0.60000000 0.60000000 8
## 2243 0.60000000 0.60000000 8
## 2244 0.60000000 0.60000000 8
## 2245 0.60000000 0.60000000 8
## 2246 0.60000000 0.60000000 8
## 2247 0.60000000 0.60000000 8
## 2248 0.60000000 0.60000000 8
## 2249 0.60000000 0.60000000 8
## 2250 0.60000000 0.60000000 8
## 2251 0.60000000 0.60000000 8
## 2252 0.60000000 0.60000000 8
## 2253 0.60000000 0.60000000 8
## 2254 0.60000000 0.60000000 8
## 2255 0.60000000 0.60000000 8
## 2256 0.60000000 0.60000000 8
## 2257 0.40000000 0.40000000 7
## 2258 0.40000000 0.40000000 7
## 2259 0.40000000 0.40000000 7
## 2260 0.40000000 0.40000000 7
## 2261 0.40000000 0.40000000 7
## 2262 0.40000000 0.40000000 7
## 2263 0.40000000 0.40000000 7
## 2264 0.40000000 0.40000000 7
## 2265 0.40000000 0.40000000 7
## 2266 0.40000000 0.40000000 7
## 2267 0.40000000 0.40000000 7
## 2268 0.40000000 0.40000000 7
## 2269 0.40000000 0.40000000 7
## 2270 0.40000000 0.40000000 7
## 2271 0.40000000 0.40000000 7
## 2272 0.40000000 0.40000000 7
## 2273 0.40000000 0.40000000 7
## 2274 0.40000000 0.40000000 7
## 2275 0.40000000 0.40000000 7
## 2276 0.40000000 0.40000000 7
## 2277 0.40000000 0.40000000 7
## 2278 0.40000000 0.40000000 7
## 2279 0.40000000 0.40000000 7
## 2280 0.40000000 0.40000000 7
## 2281 0.27777778 0.77777778 8
## 2282 0.27777778 0.77777778 8
## 2283 0.27777778 0.77777778 8
## 2284 0.27777778 0.77777778 8
## 2285 0.27777778 0.77777778 8
## 2286 0.27777778 0.77777778 8
## 2287 0.27777778 0.77777778 8
## 2288 0.27777778 0.77777778 8
## 2289 0.27777778 0.77777778 8
## 2290 0.27777778 0.77777778 8
## 2291 0.27777778 0.77777778 8
## 2292 0.27777778 0.77777778 8
## 2293 0.27777778 0.77777778 8
## 2294 0.27777778 0.77777778 8
## 2295 0.27777778 0.77777778 8
## 2296 0.27777778 0.77777778 8
## 2297 0.27777778 0.77777778 8
## 2298 0.27777778 0.77777778 8
## 2299 0.27777778 0.77777778 8
## 2300 0.27777778 0.77777778 8
## 2301 0.27777778 0.77777778 8
## 2302 0.27777778 0.77777778 8
## 2303 0.27777778 0.77777778 8
## 2304 0.27777778 0.77777778 8
## 2305 0.00000000 0.00000000 11
## 2306 0.00000000 0.00000000 11
## 2307 0.00000000 0.00000000 11
## 2308 0.00000000 0.00000000 11
## 2309 0.00000000 0.00000000 11
## 2310 0.00000000 0.00000000 11
## 2311 0.00000000 0.00000000 11
## 2312 0.00000000 0.00000000 11
## 2313 0.00000000 0.00000000 11
## 2314 0.00000000 0.00000000 11
## 2315 0.00000000 0.00000000 11
## 2316 0.00000000 0.00000000 11
## 2317 0.00000000 0.00000000 11
## 2318 0.00000000 0.00000000 11
## 2319 0.00000000 0.00000000 11
## 2320 0.00000000 0.00000000 11
## 2321 0.00000000 0.00000000 11
## 2322 0.00000000 0.00000000 11
## 2323 0.00000000 0.00000000 11
## 2324 0.00000000 0.00000000 11
## 2325 0.00000000 0.00000000 11
## 2326 0.00000000 0.00000000 11
## 2327 0.00000000 0.00000000 11
## 2328 0.00000000 0.00000000 11
## 2329 0.16666667 0.33333333 10
## 2330 0.16666667 0.33333333 10
## 2331 0.16666667 0.33333333 10
## 2332 0.16666667 0.33333333 10
## 2333 0.16666667 0.33333333 10
## 2334 0.16666667 0.33333333 10
## 2335 0.16666667 0.33333333 10
## 2336 0.16666667 0.33333333 10
## 2337 0.16666667 0.33333333 10
## 2338 0.16666667 0.33333333 10
## 2339 0.16666667 0.33333333 10
## 2340 0.16666667 0.33333333 10
## 2341 0.16666667 0.33333333 10
## 2342 0.16666667 0.33333333 10
## 2343 0.16666667 0.33333333 10
## 2344 0.16666667 0.33333333 10
## 2345 0.16666667 0.33333333 10
## 2346 0.16666667 0.33333333 10
## 2347 0.16666667 0.33333333 10
## 2348 0.16666667 0.33333333 10
## 2349 0.16666667 0.33333333 10
## 2350 0.16666667 0.33333333 10
## 2351 0.16666667 0.33333333 10
## 2352 0.16666667 0.33333333 10
## 2353 0.20000000 0.20000000 9
## 2354 0.20000000 0.20000000 9
## 2355 0.20000000 0.20000000 9
## 2356 0.20000000 0.20000000 9
## 2357 0.20000000 0.20000000 9
## 2358 0.20000000 0.20000000 9
## 2359 0.20000000 0.20000000 9
## 2360 0.20000000 0.20000000 9
## 2361 0.20000000 0.20000000 9
## 2362 0.20000000 0.20000000 9
## 2363 0.20000000 0.20000000 9
## 2364 0.20000000 0.20000000 9
## 2365 0.20000000 0.20000000 9
## 2366 0.20000000 0.20000000 9
## 2367 0.20000000 0.20000000 9
## 2368 0.20000000 0.20000000 9
## 2369 0.20000000 0.20000000 9
## 2370 0.20000000 0.20000000 9
## 2371 0.20000000 0.20000000 9
## 2372 0.20000000 0.20000000 9
## 2373 0.20000000 0.20000000 9
## 2374 0.20000000 0.20000000 9
## 2375 0.20000000 0.20000000 9
## 2376 0.20000000 0.20000000 9
## 2377 0.38461538 0.38461538 9
## 2378 0.38461538 0.38461538 9
## 2379 0.38461538 0.38461538 9
## 2380 0.38461538 0.38461538 9
## 2381 0.38461538 0.38461538 9
## 2382 0.38461538 0.38461538 9
## 2383 0.38461538 0.38461538 9
## 2384 0.38461538 0.38461538 9
## 2385 0.38461538 0.38461538 9
## 2386 0.38461538 0.38461538 9
## 2387 0.38461538 0.38461538 9
## 2388 0.38461538 0.38461538 9
## 2389 0.38461538 0.38461538 9
## 2390 0.38461538 0.38461538 9
## 2391 0.38461538 0.38461538 9
## 2392 0.38461538 0.38461538 9
## 2393 0.38461538 0.38461538 9
## 2394 0.38461538 0.38461538 9
## 2395 0.38461538 0.38461538 9
## 2396 0.38461538 0.38461538 9
## 2397 0.38461538 0.38461538 9
## 2398 0.38461538 0.38461538 9
## 2399 0.38461538 0.38461538 9
## 2400 0.38461538 0.38461538 9
## 2401 0.20454545 0.45454545 8
## 2402 0.20454545 0.45454545 8
## 2403 0.20454545 0.45454545 8
## 2404 0.20454545 0.45454545 8
## 2405 0.20454545 0.45454545 8
## 2406 0.20454545 0.45454545 8
## 2407 0.20454545 0.45454545 8
## 2408 0.20454545 0.45454545 8
## 2409 0.20454545 0.45454545 8
## 2410 0.20454545 0.45454545 8
## 2411 0.20454545 0.45454545 8
## 2412 0.20454545 0.45454545 8
## 2413 0.20454545 0.45454545 8
## 2414 0.20454545 0.45454545 8
## 2415 0.20454545 0.45454545 8
## 2416 0.20454545 0.45454545 8
## 2417 0.20454545 0.45454545 8
## 2418 0.20454545 0.45454545 8
## 2419 0.20454545 0.45454545 8
## 2420 0.20454545 0.45454545 8
## 2421 0.20454545 0.45454545 8
## 2422 0.20454545 0.45454545 8
## 2423 0.20454545 0.45454545 8
## 2424 0.20454545 0.45454545 8
## 2425 0.25000000 0.75000000 7
## 2426 0.25000000 0.75000000 7
## 2427 0.25000000 0.75000000 7
## 2428 0.25000000 0.75000000 7
## 2429 0.25000000 0.75000000 7
## 2430 0.25000000 0.75000000 7
## 2431 0.25000000 0.75000000 7
## 2432 0.25000000 0.75000000 7
## 2433 0.25000000 0.75000000 7
## 2434 0.25000000 0.75000000 7
## 2435 0.25000000 0.75000000 7
## 2436 0.25000000 0.75000000 7
## 2437 0.25000000 0.75000000 7
## 2438 0.25000000 0.75000000 7
## 2439 0.25000000 0.75000000 7
## 2440 0.25000000 0.75000000 7
## 2441 0.25000000 0.75000000 7
## 2442 0.25000000 0.75000000 7
## 2443 0.25000000 0.75000000 7
## 2444 0.25000000 0.75000000 7
## 2445 0.25000000 0.75000000 7
## 2446 0.25000000 0.75000000 7
## 2447 0.25000000 0.75000000 7
## 2448 0.25000000 0.75000000 7
## 2449 0.45454545 0.45454545 8
## 2450 0.45454545 0.45454545 8
## 2451 0.45454545 0.45454545 8
## 2452 0.45454545 0.45454545 8
## 2453 0.45454545 0.45454545 8
## 2454 0.45454545 0.45454545 8
## 2455 0.45454545 0.45454545 8
## 2456 0.45454545 0.45454545 8
## 2457 0.45454545 0.45454545 8
## 2458 0.45454545 0.45454545 8
## 2459 0.45454545 0.45454545 8
## 2460 0.45454545 0.45454545 8
## 2461 0.45454545 0.45454545 8
## 2462 0.45454545 0.45454545 8
## 2463 0.45454545 0.45454545 8
## 2464 0.45454545 0.45454545 8
## 2465 0.45454545 0.45454545 8
## 2466 0.45454545 0.45454545 8
## 2467 0.45454545 0.45454545 8
## 2468 0.45454545 0.45454545 8
## 2469 0.45454545 0.45454545 8
## 2470 0.45454545 0.45454545 8
## 2471 0.45454545 0.45454545 8
## 2472 0.45454545 0.45454545 8
## 2473 0.27777778 0.77777778 8
## 2474 0.27777778 0.77777778 8
## 2475 0.27777778 0.77777778 8
## 2476 0.27777778 0.77777778 8
## 2477 0.27777778 0.77777778 8
## 2478 0.27777778 0.77777778 8
## 2479 0.27777778 0.77777778 8
## 2480 0.27777778 0.77777778 8
## 2481 0.27777778 0.77777778 8
## 2482 0.27777778 0.77777778 8
## 2483 0.27777778 0.77777778 8
## 2484 0.27777778 0.77777778 8
## 2485 0.27777778 0.77777778 8
## 2486 0.27777778 0.77777778 8
## 2487 0.27777778 0.77777778 8
## 2488 0.27777778 0.77777778 8
## 2489 0.27777778 0.77777778 8
## 2490 0.27777778 0.77777778 8
## 2491 0.27777778 0.77777778 8
## 2492 0.27777778 0.77777778 8
## 2493 0.27777778 0.77777778 8
## 2494 0.27777778 0.77777778 8
## 2495 0.27777778 0.77777778 8
## 2496 0.27777778 0.77777778 8
## 2497 0.00000000 0.00000000 11
## 2498 0.00000000 0.00000000 11
## 2499 0.00000000 0.00000000 11
## 2500 0.00000000 0.00000000 11
## 2501 0.00000000 0.00000000 11
## 2502 0.00000000 0.00000000 11
## 2503 0.00000000 0.00000000 11
## 2504 0.00000000 0.00000000 11
## 2505 0.00000000 0.00000000 11
## 2506 0.00000000 0.00000000 11
## 2507 0.00000000 0.00000000 11
## 2508 0.00000000 0.00000000 11
## 2509 0.00000000 0.00000000 11
## 2510 0.00000000 0.00000000 11
## 2511 0.00000000 0.00000000 11
## 2512 0.00000000 0.00000000 11
## 2513 0.00000000 0.00000000 11
## 2514 0.00000000 0.00000000 11
## 2515 0.00000000 0.00000000 11
## 2516 0.00000000 0.00000000 11
## 2517 0.00000000 0.00000000 11
## 2518 0.00000000 0.00000000 11
## 2519 0.00000000 0.00000000 11
## 2520 0.00000000 0.00000000 11
## 2521 0.07692308 0.07692308 7
## 2522 0.07692308 0.07692308 7
## 2523 0.07692308 0.07692308 7
## 2524 0.07692308 0.07692308 7
## 2525 0.07692308 0.07692308 7
## 2526 0.07692308 0.07692308 7
## 2527 0.07692308 0.07692308 7
## 2528 0.07692308 0.07692308 7
## 2529 0.07692308 0.07692308 7
## 2530 0.07692308 0.07692308 7
## 2531 0.07692308 0.07692308 7
## 2532 0.07692308 0.07692308 7
## 2533 0.07692308 0.07692308 7
## 2534 0.07692308 0.07692308 7
## 2535 0.07692308 0.07692308 7
## 2536 0.07692308 0.07692308 7
## 2537 0.07692308 0.07692308 7
## 2538 0.07692308 0.07692308 7
## 2539 0.07692308 0.07692308 7
## 2540 0.07692308 0.07692308 7
## 2541 0.07692308 0.07692308 7
## 2542 0.07692308 0.07692308 7
## 2543 0.07692308 0.07692308 7
## 2544 0.07692308 0.07692308 7
## 2545 0.14285714 0.14285714 8
## 2546 0.14285714 0.14285714 8
## 2547 0.14285714 0.14285714 8
## 2548 0.14285714 0.14285714 8
## 2549 0.14285714 0.14285714 8
## 2550 0.14285714 0.14285714 8
## 2551 0.14285714 0.14285714 8
## 2552 0.14285714 0.14285714 8
## 2553 0.14285714 0.14285714 8
## 2554 0.14285714 0.14285714 8
## 2555 0.14285714 0.14285714 8
## 2556 0.14285714 0.14285714 8
## 2557 0.14285714 0.14285714 8
## 2558 0.14285714 0.14285714 8
## 2559 0.14285714 0.14285714 8
## 2560 0.14285714 0.14285714 8
## 2561 0.14285714 0.14285714 8
## 2562 0.14285714 0.14285714 8
## 2563 0.14285714 0.14285714 8
## 2564 0.14285714 0.14285714 8
## 2565 0.14285714 0.14285714 8
## 2566 0.14285714 0.14285714 8
## 2567 0.14285714 0.14285714 8
## 2568 0.14285714 0.14285714 8
## 2569 0.15000000 0.40000000 7
## 2570 0.15000000 0.40000000 7
## 2571 0.15000000 0.40000000 7
## 2572 0.15000000 0.40000000 7
## 2573 0.15000000 0.40000000 7
## 2574 0.15000000 0.40000000 7
## 2575 0.15000000 0.40000000 7
## 2576 0.15000000 0.40000000 7
## 2577 0.15000000 0.40000000 7
## 2578 0.15000000 0.40000000 7
## 2579 0.15000000 0.40000000 7
## 2580 0.15000000 0.40000000 7
## 2581 0.15000000 0.40000000 7
## 2582 0.15000000 0.40000000 7
## 2583 0.15000000 0.40000000 7
## 2584 0.15000000 0.40000000 7
## 2585 0.15000000 0.40000000 7
## 2586 0.15000000 0.40000000 7
## 2587 0.15000000 0.40000000 7
## 2588 0.15000000 0.40000000 7
## 2589 0.15000000 0.40000000 7
## 2590 0.15000000 0.40000000 7
## 2591 0.15000000 0.40000000 7
## 2592 0.15000000 0.40000000 7
## 2593 0.15000000 0.40000000 7
## 2594 0.15000000 0.40000000 7
## 2595 0.15000000 0.40000000 7
## 2596 0.15000000 0.40000000 7
## 2597 0.15000000 0.40000000 7
## 2598 0.15000000 0.40000000 7
## 2599 0.15000000 0.40000000 7
## 2600 0.15000000 0.40000000 7
## 2601 0.15000000 0.40000000 7
## 2602 0.15000000 0.40000000 7
## 2603 0.15000000 0.40000000 7
## 2604 0.15000000 0.40000000 7
## 2605 0.15000000 0.40000000 7
## 2606 0.15000000 0.40000000 7
## 2607 0.15000000 0.40000000 7
## 2608 0.15000000 0.40000000 7
## 2609 0.15000000 0.40000000 7
## 2610 0.15000000 0.40000000 7
## 2611 0.15000000 0.40000000 7
## 2612 0.15000000 0.40000000 7
## 2613 0.15000000 0.40000000 7
## 2614 0.15000000 0.40000000 7
## 2615 0.15000000 0.40000000 7
## 2616 0.15000000 0.40000000 7
## 2617 0.21428571 0.71428571 6
## 2618 0.21428571 0.71428571 6
## 2619 0.21428571 0.71428571 6
## 2620 0.21428571 0.71428571 6
## 2621 0.21428571 0.71428571 6
## 2622 0.21428571 0.71428571 6
## 2623 0.21428571 0.71428571 6
## 2624 0.21428571 0.71428571 6
## 2625 0.21428571 0.71428571 6
## 2626 0.21428571 0.71428571 6
## 2627 0.21428571 0.71428571 6
## 2628 0.21428571 0.71428571 6
## 2629 0.21428571 0.71428571 6
## 2630 0.21428571 0.71428571 6
## 2631 0.21428571 0.71428571 6
## total_metaecosystem_bioarea_mm2 total_metaecosystem_Ble_indiv
## 1 96.92197 217.1512
## 2 96.92197 217.1512
## 3 96.92197 217.1512
## 4 96.92197 217.1512
## 5 96.92197 217.1512
## 6 96.92197 217.1512
## 7 96.92197 217.1512
## 8 96.92197 217.1512
## 9 96.92197 217.1512
## 10 96.92197 217.1512
## 11 96.92197 217.1512
## 12 96.92197 217.1512
## 13 96.92197 217.1512
## 14 96.92197 217.1512
## 15 96.92197 217.1512
## 16 96.92197 217.1512
## 17 96.92197 217.1512
## 18 96.92197 217.1512
## 19 96.92197 217.1512
## 20 96.92197 217.1512
## 21 96.92197 217.1512
## 22 96.92197 217.1512
## 23 96.92197 217.1512
## 24 96.92197 217.1512
## 25 152.90836 1037.7907
## 26 152.90836 1037.7907
## 27 152.90836 1037.7907
## 28 152.90836 1037.7907
## 29 152.90836 1037.7907
## 30 152.90836 1037.7907
## 31 152.90836 1037.7907
## 32 152.90836 1037.7907
## 33 152.90836 1037.7907
## 34 152.90836 1037.7907
## 35 152.90836 1037.7907
## 36 152.90836 1037.7907
## 37 152.90836 1037.7907
## 38 152.90836 1037.7907
## 39 152.90836 1037.7907
## 40 152.90836 1037.7907
## 41 152.90836 1037.7907
## 42 152.90836 1037.7907
## 43 152.90836 1037.7907
## 44 152.90836 1037.7907
## 45 152.90836 1037.7907
## 46 152.90836 1037.7907
## 47 152.90836 1037.7907
## 48 152.90836 1037.7907
## 49 163.09305 2398.2558
## 50 163.09305 2398.2558
## 51 163.09305 2398.2558
## 52 163.09305 2398.2558
## 53 163.09305 2398.2558
## 54 163.09305 2398.2558
## 55 163.09305 2398.2558
## 56 163.09305 2398.2558
## 57 163.09305 2398.2558
## 58 163.09305 2398.2558
## 59 163.09305 2398.2558
## 60 163.09305 2398.2558
## 61 163.09305 2398.2558
## 62 163.09305 2398.2558
## 63 163.09305 2398.2558
## 64 163.09305 2398.2558
## 65 163.09305 2398.2558
## 66 163.09305 2398.2558
## 67 163.09305 2398.2558
## 68 163.09305 2398.2558
## 69 163.09305 2398.2558
## 70 163.09305 2398.2558
## 71 163.09305 2398.2558
## 72 163.09305 2398.2558
## 73 182.03030 3174.4186
## 74 182.03030 3174.4186
## 75 182.03030 3174.4186
## 76 182.03030 3174.4186
## 77 182.03030 3174.4186
## 78 182.03030 3174.4186
## 79 182.03030 3174.4186
## 80 182.03030 3174.4186
## 81 182.03030 3174.4186
## 82 182.03030 3174.4186
## 83 182.03030 3174.4186
## 84 182.03030 3174.4186
## 85 182.03030 3174.4186
## 86 182.03030 3174.4186
## 87 182.03030 3174.4186
## 88 182.03030 3174.4186
## 89 182.03030 3174.4186
## 90 182.03030 3174.4186
## 91 182.03030 3174.4186
## 92 182.03030 3174.4186
## 93 182.03030 3174.4186
## 94 182.03030 3174.4186
## 95 182.03030 3174.4186
## 96 182.03030 3174.4186
## 97 140.28580 4006.3953
## 98 140.28580 4006.3953
## 99 140.28580 4006.3953
## 100 140.28580 4006.3953
## 101 140.28580 4006.3953
## 102 140.28580 4006.3953
## 103 140.28580 4006.3953
## 104 140.28580 4006.3953
## 105 140.28580 4006.3953
## 106 140.28580 4006.3953
## 107 140.28580 4006.3953
## 108 140.28580 4006.3953
## 109 140.28580 4006.3953
## 110 140.28580 4006.3953
## 111 140.28580 4006.3953
## 112 140.28580 4006.3953
## 113 140.28580 4006.3953
## 114 140.28580 4006.3953
## 115 140.28580 4006.3953
## 116 140.28580 4006.3953
## 117 140.28580 4006.3953
## 118 140.28580 4006.3953
## 119 140.28580 4006.3953
## 120 140.28580 4006.3953
## 121 117.28324 3750.0000
## 122 117.28324 3750.0000
## 123 117.28324 3750.0000
## 124 117.28324 3750.0000
## 125 117.28324 3750.0000
## 126 117.28324 3750.0000
## 127 117.28324 3750.0000
## 128 117.28324 3750.0000
## 129 117.28324 3750.0000
## 130 117.28324 3750.0000
## 131 117.28324 3750.0000
## 132 117.28324 3750.0000
## 133 117.28324 3750.0000
## 134 117.28324 3750.0000
## 135 117.28324 3750.0000
## 136 117.28324 3750.0000
## 137 117.28324 3750.0000
## 138 117.28324 3750.0000
## 139 117.28324 3750.0000
## 140 117.28324 3750.0000
## 141 117.28324 3750.0000
## 142 117.28324 3750.0000
## 143 117.28324 3750.0000
## 144 117.28324 3750.0000
## 145 103.80974 2986.9186
## 146 103.80974 2986.9186
## 147 103.80974 2986.9186
## 148 103.80974 2986.9186
## 149 103.80974 2986.9186
## 150 103.80974 2986.9186
## 151 103.80974 2986.9186
## 152 103.80974 2986.9186
## 153 103.80974 2986.9186
## 154 103.80974 2986.9186
## 155 103.80974 2986.9186
## 156 103.80974 2986.9186
## 157 103.80974 2986.9186
## 158 103.80974 2986.9186
## 159 103.80974 2986.9186
## 160 103.80974 2986.9186
## 161 103.80974 2986.9186
## 162 103.80974 2986.9186
## 163 103.80974 2986.9186
## 164 103.80974 2986.9186
## 165 103.80974 2986.9186
## 166 103.80974 2986.9186
## 167 103.80974 2986.9186
## 168 103.80974 2986.9186
## 169 92.60172 1748.5465
## 170 92.60172 1748.5465
## 171 92.60172 1748.5465
## 172 92.60172 1748.5465
## 173 92.60172 1748.5465
## 174 92.60172 1748.5465
## 175 92.60172 1748.5465
## 176 92.60172 1748.5465
## 177 92.60172 1748.5465
## 178 92.60172 1748.5465
## 179 92.60172 1748.5465
## 180 92.60172 1748.5465
## 181 92.60172 1748.5465
## 182 92.60172 1748.5465
## 183 92.60172 1748.5465
## 184 92.60172 1748.5465
## 185 92.60172 1748.5465
## 186 92.60172 1748.5465
## 187 92.60172 1748.5465
## 188 92.60172 1748.5465
## 189 92.60172 1748.5465
## 190 92.60172 1748.5465
## 191 92.60172 1748.5465
## 192 92.60172 1748.5465
## 193 96.92197 217.1512
## 194 96.92197 217.1512
## 195 96.92197 217.1512
## 196 96.92197 217.1512
## 197 96.92197 217.1512
## 198 96.92197 217.1512
## 199 96.92197 217.1512
## 200 96.92197 217.1512
## 201 96.92197 217.1512
## 202 96.92197 217.1512
## 203 96.92197 217.1512
## 204 96.92197 217.1512
## 205 96.92197 217.1512
## 206 96.92197 217.1512
## 207 96.92197 217.1512
## 208 96.92197 217.1512
## 209 96.92197 217.1512
## 210 96.92197 217.1512
## 211 96.92197 217.1512
## 212 96.92197 217.1512
## 213 96.92197 217.1512
## 214 96.92197 217.1512
## 215 96.92197 217.1512
## 216 96.92197 217.1512
## 217 229.78020 5537.7907
## 218 229.78020 5537.7907
## 219 229.78020 5537.7907
## 220 229.78020 5537.7907
## 221 229.78020 5537.7907
## 222 229.78020 5537.7907
## 223 229.78020 5537.7907
## 224 229.78020 5537.7907
## 225 229.78020 5537.7907
## 226 229.78020 5537.7907
## 227 229.78020 5537.7907
## 228 229.78020 5537.7907
## 229 229.78020 5537.7907
## 230 229.78020 5537.7907
## 231 229.78020 5537.7907
## 232 229.78020 5537.7907
## 233 229.78020 5537.7907
## 234 229.78020 5537.7907
## 235 229.78020 5537.7907
## 236 229.78020 5537.7907
## 237 229.78020 5537.7907
## 238 229.78020 5537.7907
## 239 229.78020 5537.7907
## 240 229.78020 5537.7907
## 241 133.25628 2904.0698
## 242 133.25628 2904.0698
## 243 133.25628 2904.0698
## 244 133.25628 2904.0698
## 245 133.25628 2904.0698
## 246 133.25628 2904.0698
## 247 133.25628 2904.0698
## 248 133.25628 2904.0698
## 249 133.25628 2904.0698
## 250 133.25628 2904.0698
## 251 133.25628 2904.0698
## 252 133.25628 2904.0698
## 253 133.25628 2904.0698
## 254 133.25628 2904.0698
## 255 133.25628 2904.0698
## 256 133.25628 2904.0698
## 257 133.25628 2904.0698
## 258 133.25628 2904.0698
## 259 133.25628 2904.0698
## 260 133.25628 2904.0698
## 261 133.25628 2904.0698
## 262 133.25628 2904.0698
## 263 133.25628 2904.0698
## 264 133.25628 2904.0698
## 265 209.35334 4752.9070
## 266 209.35334 4752.9070
## 267 209.35334 4752.9070
## 268 209.35334 4752.9070
## 269 209.35334 4752.9070
## 270 209.35334 4752.9070
## 271 209.35334 4752.9070
## 272 209.35334 4752.9070
## 273 209.35334 4752.9070
## 274 209.35334 4752.9070
## 275 209.35334 4752.9070
## 276 209.35334 4752.9070
## 277 209.35334 4752.9070
## 278 209.35334 4752.9070
## 279 209.35334 4752.9070
## 280 209.35334 4752.9070
## 281 209.35334 4752.9070
## 282 209.35334 4752.9070
## 283 209.35334 4752.9070
## 284 209.35334 4752.9070
## 285 209.35334 4752.9070
## 286 209.35334 4752.9070
## 287 209.35334 4752.9070
## 288 209.35334 4752.9070
## 289 176.95269 3430.8140
## 290 176.95269 3430.8140
## 291 176.95269 3430.8140
## 292 176.95269 3430.8140
## 293 176.95269 3430.8140
## 294 176.95269 3430.8140
## 295 176.95269 3430.8140
## 296 176.95269 3430.8140
## 297 176.95269 3430.8140
## 298 176.95269 3430.8140
## 299 176.95269 3430.8140
## 300 176.95269 3430.8140
## 301 176.95269 3430.8140
## 302 176.95269 3430.8140
## 303 176.95269 3430.8140
## 304 176.95269 3430.8140
## 305 176.95269 3430.8140
## 306 176.95269 3430.8140
## 307 176.95269 3430.8140
## 308 176.95269 3430.8140
## 309 176.95269 3430.8140
## 310 176.95269 3430.8140
## 311 176.95269 3430.8140
## 312 176.95269 3430.8140
## 313 119.42234 2659.8837
## 314 119.42234 2659.8837
## 315 119.42234 2659.8837
## 316 119.42234 2659.8837
## 317 119.42234 2659.8837
## 318 119.42234 2659.8837
## 319 119.42234 2659.8837
## 320 119.42234 2659.8837
## 321 119.42234 2659.8837
## 322 119.42234 2659.8837
## 323 119.42234 2659.8837
## 324 119.42234 2659.8837
## 325 119.42234 2659.8837
## 326 119.42234 2659.8837
## 327 119.42234 2659.8837
## 328 119.42234 2659.8837
## 329 119.42234 2659.8837
## 330 119.42234 2659.8837
## 331 119.42234 2659.8837
## 332 119.42234 2659.8837
## 333 119.42234 2659.8837
## 334 119.42234 2659.8837
## 335 119.42234 2659.8837
## 336 119.42234 2659.8837
## 337 105.58980 4984.0116
## 338 105.58980 4984.0116
## 339 105.58980 4984.0116
## 340 105.58980 4984.0116
## 341 105.58980 4984.0116
## 342 105.58980 4984.0116
## 343 105.58980 4984.0116
## 344 105.58980 4984.0116
## 345 105.58980 4984.0116
## 346 105.58980 4984.0116
## 347 105.58980 4984.0116
## 348 105.58980 4984.0116
## 349 105.58980 4984.0116
## 350 105.58980 4984.0116
## 351 105.58980 4984.0116
## 352 105.58980 4984.0116
## 353 105.58980 4984.0116
## 354 105.58980 4984.0116
## 355 105.58980 4984.0116
## 356 105.58980 4984.0116
## 357 105.58980 4984.0116
## 358 105.58980 4984.0116
## 359 105.58980 4984.0116
## 360 105.58980 4984.0116
## 361 70.36451 2376.4535
## 362 70.36451 2376.4535
## 363 70.36451 2376.4535
## 364 70.36451 2376.4535
## 365 70.36451 2376.4535
## 366 70.36451 2376.4535
## 367 70.36451 2376.4535
## 368 70.36451 2376.4535
## 369 70.36451 2376.4535
## 370 70.36451 2376.4535
## 371 70.36451 2376.4535
## 372 70.36451 2376.4535
## 373 70.36451 2376.4535
## 374 70.36451 2376.4535
## 375 70.36451 2376.4535
## 376 70.36451 2376.4535
## 377 70.36451 2376.4535
## 378 70.36451 2376.4535
## 379 70.36451 2376.4535
## 380 70.36451 2376.4535
## 381 70.36451 2376.4535
## 382 70.36451 2376.4535
## 383 70.36451 2376.4535
## 384 70.36451 2376.4535
## 385 96.92197 217.1512
## 386 96.92197 217.1512
## 387 96.92197 217.1512
## 388 96.92197 217.1512
## 389 96.92197 217.1512
## 390 96.92197 217.1512
## 391 96.92197 217.1512
## 392 96.92197 217.1512
## 393 96.92197 217.1512
## 394 96.92197 217.1512
## 395 96.92197 217.1512
## 396 96.92197 217.1512
## 397 96.92197 217.1512
## 398 96.92197 217.1512
## 399 96.92197 217.1512
## 400 96.92197 217.1512
## 401 96.92197 217.1512
## 402 96.92197 217.1512
## 403 96.92197 217.1512
## 404 96.92197 217.1512
## 405 96.92197 217.1512
## 406 96.92197 217.1512
## 407 96.92197 217.1512
## 408 96.92197 217.1512
## 409 184.49614 3488.3721
## 410 184.49614 3488.3721
## 411 184.49614 3488.3721
## 412 184.49614 3488.3721
## 413 184.49614 3488.3721
## 414 184.49614 3488.3721
## 415 184.49614 3488.3721
## 416 184.49614 3488.3721
## 417 184.49614 3488.3721
## 418 184.49614 3488.3721
## 419 184.49614 3488.3721
## 420 184.49614 3488.3721
## 421 184.49614 3488.3721
## 422 184.49614 3488.3721
## 423 184.49614 3488.3721
## 424 184.49614 3488.3721
## 425 184.49614 3488.3721
## 426 184.49614 3488.3721
## 427 184.49614 3488.3721
## 428 184.49614 3488.3721
## 429 184.49614 3488.3721
## 430 184.49614 3488.3721
## 431 184.49614 3488.3721
## 432 184.49614 3488.3721
## 433 183.48227 3715.1163
## 434 183.48227 3715.1163
## 435 183.48227 3715.1163
## 436 183.48227 3715.1163
## 437 183.48227 3715.1163
## 438 183.48227 3715.1163
## 439 183.48227 3715.1163
## 440 183.48227 3715.1163
## 441 183.48227 3715.1163
## 442 183.48227 3715.1163
## 443 183.48227 3715.1163
## 444 183.48227 3715.1163
## 445 183.48227 3715.1163
## 446 183.48227 3715.1163
## 447 183.48227 3715.1163
## 448 183.48227 3715.1163
## 449 183.48227 3715.1163
## 450 183.48227 3715.1163
## 451 183.48227 3715.1163
## 452 183.48227 3715.1163
## 453 183.48227 3715.1163
## 454 183.48227 3715.1163
## 455 183.48227 3715.1163
## 456 183.48227 3715.1163
## 457 141.08208 4491.2791
## 458 141.08208 4491.2791
## 459 141.08208 4491.2791
## 460 141.08208 4491.2791
## 461 141.08208 4491.2791
## 462 141.08208 4491.2791
## 463 141.08208 4491.2791
## 464 141.08208 4491.2791
## 465 141.08208 4491.2791
## 466 141.08208 4491.2791
## 467 141.08208 4491.2791
## 468 141.08208 4491.2791
## 469 141.08208 4491.2791
## 470 141.08208 4491.2791
## 471 141.08208 4491.2791
## 472 141.08208 4491.2791
## 473 141.08208 4491.2791
## 474 141.08208 4491.2791
## 475 141.08208 4491.2791
## 476 141.08208 4491.2791
## 477 141.08208 4491.2791
## 478 141.08208 4491.2791
## 479 141.08208 4491.2791
## 480 141.08208 4491.2791
## 481 156.15050 5768.0233
## 482 156.15050 5768.0233
## 483 156.15050 5768.0233
## 484 156.15050 5768.0233
## 485 156.15050 5768.0233
## 486 156.15050 5768.0233
## 487 156.15050 5768.0233
## 488 156.15050 5768.0233
## 489 156.15050 5768.0233
## 490 156.15050 5768.0233
## 491 156.15050 5768.0233
## 492 156.15050 5768.0233
## 493 156.15050 5768.0233
## 494 156.15050 5768.0233
## 495 156.15050 5768.0233
## 496 156.15050 5768.0233
## 497 156.15050 5768.0233
## 498 156.15050 5768.0233
## 499 156.15050 5768.0233
## 500 156.15050 5768.0233
## 501 156.15050 5768.0233
## 502 156.15050 5768.0233
## 503 156.15050 5768.0233
## 504 156.15050 5768.0233
## 505 140.12740 7709.3023
## 506 140.12740 7709.3023
## 507 140.12740 7709.3023
## 508 140.12740 7709.3023
## 509 140.12740 7709.3023
## 510 140.12740 7709.3023
## 511 140.12740 7709.3023
## 512 140.12740 7709.3023
## 513 140.12740 7709.3023
## 514 140.12740 7709.3023
## 515 140.12740 7709.3023
## 516 140.12740 7709.3023
## 517 140.12740 7709.3023
## 518 140.12740 7709.3023
## 519 140.12740 7709.3023
## 520 140.12740 7709.3023
## 521 140.12740 7709.3023
## 522 140.12740 7709.3023
## 523 140.12740 7709.3023
## 524 140.12740 7709.3023
## 525 140.12740 7709.3023
## 526 140.12740 7709.3023
## 527 140.12740 7709.3023
## 528 140.12740 7709.3023
## 529 100.60675 3771.8023
## 530 100.60675 3771.8023
## 531 100.60675 3771.8023
## 532 100.60675 3771.8023
## 533 100.60675 3771.8023
## 534 100.60675 3771.8023
## 535 100.60675 3771.8023
## 536 100.60675 3771.8023
## 537 100.60675 3771.8023
## 538 100.60675 3771.8023
## 539 100.60675 3771.8023
## 540 100.60675 3771.8023
## 541 100.60675 3771.8023
## 542 100.60675 3771.8023
## 543 100.60675 3771.8023
## 544 100.60675 3771.8023
## 545 100.60675 3771.8023
## 546 100.60675 3771.8023
## 547 100.60675 3771.8023
## 548 100.60675 3771.8023
## 549 100.60675 3771.8023
## 550 100.60675 3771.8023
## 551 100.60675 3771.8023
## 552 100.60675 3771.8023
## 553 141.11066 2180.2326
## 554 141.11066 2180.2326
## 555 141.11066 2180.2326
## 556 141.11066 2180.2326
## 557 141.11066 2180.2326
## 558 141.11066 2180.2326
## 559 141.11066 2180.2326
## 560 141.11066 2180.2326
## 561 141.11066 2180.2326
## 562 141.11066 2180.2326
## 563 141.11066 2180.2326
## 564 141.11066 2180.2326
## 565 141.11066 2180.2326
## 566 141.11066 2180.2326
## 567 141.11066 2180.2326
## 568 141.11066 2180.2326
## 569 141.11066 2180.2326
## 570 141.11066 2180.2326
## 571 141.11066 2180.2326
## 572 141.11066 2180.2326
## 573 141.11066 2180.2326
## 574 141.11066 2180.2326
## 575 141.11066 2180.2326
## 576 141.11066 2180.2326
## 577 96.92197 217.1512
## 578 96.92197 217.1512
## 579 96.92197 217.1512
## 580 96.92197 217.1512
## 581 96.92197 217.1512
## 582 96.92197 217.1512
## 583 96.92197 217.1512
## 584 96.92197 217.1512
## 585 96.92197 217.1512
## 586 96.92197 217.1512
## 587 96.92197 217.1512
## 588 96.92197 217.1512
## 589 96.92197 217.1512
## 590 96.92197 217.1512
## 591 96.92197 217.1512
## 592 96.92197 217.1512
## 593 96.92197 217.1512
## 594 96.92197 217.1512
## 595 96.92197 217.1512
## 596 96.92197 217.1512
## 597 96.92197 217.1512
## 598 96.92197 217.1512
## 599 96.92197 217.1512
## 600 96.92197 217.1512
## 601 115.91533 1308.1395
## 602 115.91533 1308.1395
## 603 115.91533 1308.1395
## 604 115.91533 1308.1395
## 605 115.91533 1308.1395
## 606 115.91533 1308.1395
## 607 115.91533 1308.1395
## 608 115.91533 1308.1395
## 609 115.91533 1308.1395
## 610 115.91533 1308.1395
## 611 115.91533 1308.1395
## 612 115.91533 1308.1395
## 613 115.91533 1308.1395
## 614 115.91533 1308.1395
## 615 115.91533 1308.1395
## 616 115.91533 1308.1395
## 617 115.91533 1308.1395
## 618 115.91533 1308.1395
## 619 115.91533 1308.1395
## 620 115.91533 1308.1395
## 621 115.91533 1308.1395
## 622 115.91533 1308.1395
## 623 115.91533 1308.1395
## 624 115.91533 1308.1395
## 625 161.40812 1308.1395
## 626 161.40812 1308.1395
## 627 161.40812 1308.1395
## 628 161.40812 1308.1395
## 629 161.40812 1308.1395
## 630 161.40812 1308.1395
## 631 161.40812 1308.1395
## 632 161.40812 1308.1395
## 633 161.40812 1308.1395
## 634 161.40812 1308.1395
## 635 161.40812 1308.1395
## 636 161.40812 1308.1395
## 637 161.40812 1308.1395
## 638 161.40812 1308.1395
## 639 161.40812 1308.1395
## 640 161.40812 1308.1395
## 641 161.40812 1308.1395
## 642 161.40812 1308.1395
## 643 161.40812 1308.1395
## 644 161.40812 1308.1395
## 645 161.40812 1308.1395
## 646 161.40812 1308.1395
## 647 161.40812 1308.1395
## 648 161.40812 1308.1395
## 649 97.61383 2398.2558
## 650 97.61383 2398.2558
## 651 97.61383 2398.2558
## 652 97.61383 2398.2558
## 653 97.61383 2398.2558
## 654 97.61383 2398.2558
## 655 97.61383 2398.2558
## 656 97.61383 2398.2558
## 657 97.61383 2398.2558
## 658 97.61383 2398.2558
## 659 97.61383 2398.2558
## 660 97.61383 2398.2558
## 661 97.61383 2398.2558
## 662 97.61383 2398.2558
## 663 97.61383 2398.2558
## 664 97.61383 2398.2558
## 665 97.61383 2398.2558
## 666 97.61383 2398.2558
## 667 97.61383 2398.2558
## 668 97.61383 2398.2558
## 669 97.61383 2398.2558
## 670 97.61383 2398.2558
## 671 97.61383 2398.2558
## 672 97.61383 2398.2558
## 673 155.88072 4102.3256
## 674 155.88072 4102.3256
## 675 155.88072 4102.3256
## 676 155.88072 4102.3256
## 677 155.88072 4102.3256
## 678 155.88072 4102.3256
## 679 155.88072 4102.3256
## 680 155.88072 4102.3256
## 681 155.88072 4102.3256
## 682 155.88072 4102.3256
## 683 155.88072 4102.3256
## 684 155.88072 4102.3256
## 685 155.88072 4102.3256
## 686 155.88072 4102.3256
## 687 155.88072 4102.3256
## 688 155.88072 4102.3256
## 689 155.88072 4102.3256
## 690 155.88072 4102.3256
## 691 155.88072 4102.3256
## 692 155.88072 4102.3256
## 693 155.88072 4102.3256
## 694 155.88072 4102.3256
## 695 155.88072 4102.3256
## 696 155.88072 4102.3256
## 697 60.30225 4360.4651
## 698 60.30225 4360.4651
## 699 60.30225 4360.4651
## 700 60.30225 4360.4651
## 701 60.30225 4360.4651
## 702 60.30225 4360.4651
## 703 60.30225 4360.4651
## 704 60.30225 4360.4651
## 705 60.30225 4360.4651
## 706 60.30225 4360.4651
## 707 60.30225 4360.4651
## 708 60.30225 4360.4651
## 709 60.30225 4360.4651
## 710 60.30225 4360.4651
## 711 60.30225 4360.4651
## 712 60.30225 4360.4651
## 713 60.30225 4360.4651
## 714 60.30225 4360.4651
## 715 60.30225 4360.4651
## 716 60.30225 4360.4651
## 717 60.30225 4360.4651
## 718 60.30225 4360.4651
## 719 60.30225 4360.4651
## 720 60.30225 4360.4651
## 721 41.31407 1308.1395
## 722 41.31407 1308.1395
## 723 41.31407 1308.1395
## 724 41.31407 1308.1395
## 725 41.31407 1308.1395
## 726 41.31407 1308.1395
## 727 41.31407 1308.1395
## 728 41.31407 1308.1395
## 729 41.31407 1308.1395
## 730 41.31407 1308.1395
## 731 41.31407 1308.1395
## 732 41.31407 1308.1395
## 733 41.31407 1308.1395
## 734 41.31407 1308.1395
## 735 41.31407 1308.1395
## 736 41.31407 1308.1395
## 737 41.31407 1308.1395
## 738 41.31407 1308.1395
## 739 41.31407 1308.1395
## 740 41.31407 1308.1395
## 741 41.31407 1308.1395
## 742 41.31407 1308.1395
## 743 41.31407 1308.1395
## 744 41.31407 1308.1395
## 745 32.52923 2180.2326
## 746 32.52923 2180.2326
## 747 32.52923 2180.2326
## 748 32.52923 2180.2326
## 749 32.52923 2180.2326
## 750 32.52923 2180.2326
## 751 32.52923 2180.2326
## 752 32.52923 2180.2326
## 753 32.52923 2180.2326
## 754 32.52923 2180.2326
## 755 32.52923 2180.2326
## 756 32.52923 2180.2326
## 757 32.52923 2180.2326
## 758 32.52923 2180.2326
## 759 32.52923 2180.2326
## 760 32.52923 2180.2326
## 761 32.52923 2180.2326
## 762 32.52923 2180.2326
## 763 32.52923 2180.2326
## 764 32.52923 2180.2326
## 765 32.52923 2180.2326
## 766 32.52923 2180.2326
## 767 32.52923 2180.2326
## 768 32.52923 2180.2326
## 769 96.92197 217.1512
## 770 96.92197 217.1512
## 771 96.92197 217.1512
## 772 96.92197 217.1512
## 773 96.92197 217.1512
## 774 96.92197 217.1512
## 775 96.92197 217.1512
## 776 96.92197 217.1512
## 777 96.92197 217.1512
## 778 96.92197 217.1512
## 779 96.92197 217.1512
## 780 96.92197 217.1512
## 781 96.92197 217.1512
## 782 96.92197 217.1512
## 783 96.92197 217.1512
## 784 96.92197 217.1512
## 785 96.92197 217.1512
## 786 96.92197 217.1512
## 787 96.92197 217.1512
## 788 96.92197 217.1512
## 789 96.92197 217.1512
## 790 96.92197 217.1512
## 791 96.92197 217.1512
## 792 96.92197 217.1512
## 793 120.64726 1308.1395
## 794 120.64726 1308.1395
## 795 120.64726 1308.1395
## 796 120.64726 1308.1395
## 797 120.64726 1308.1395
## 798 120.64726 1308.1395
## 799 120.64726 1308.1395
## 800 120.64726 1308.1395
## 801 120.64726 1308.1395
## 802 120.64726 1308.1395
## 803 120.64726 1308.1395
## 804 120.64726 1308.1395
## 805 120.64726 1308.1395
## 806 120.64726 1308.1395
## 807 120.64726 1308.1395
## 808 120.64726 1308.1395
## 809 120.64726 1308.1395
## 810 120.64726 1308.1395
## 811 120.64726 1308.1395
## 812 120.64726 1308.1395
## 813 120.64726 1308.1395
## 814 120.64726 1308.1395
## 815 120.64726 1308.1395
## 816 120.64726 1308.1395
## 817 154.62321 2398.2558
## 818 154.62321 2398.2558
## 819 154.62321 2398.2558
## 820 154.62321 2398.2558
## 821 154.62321 2398.2558
## 822 154.62321 2398.2558
## 823 154.62321 2398.2558
## 824 154.62321 2398.2558
## 825 154.62321 2398.2558
## 826 154.62321 2398.2558
## 827 154.62321 2398.2558
## 828 154.62321 2398.2558
## 829 154.62321 2398.2558
## 830 154.62321 2398.2558
## 831 154.62321 2398.2558
## 832 154.62321 2398.2558
## 833 154.62321 2398.2558
## 834 154.62321 2398.2558
## 835 154.62321 2398.2558
## 836 154.62321 2398.2558
## 837 154.62321 2398.2558
## 838 154.62321 2398.2558
## 839 154.62321 2398.2558
## 840 154.62321 2398.2558
## 841 190.63761 2398.2558
## 842 190.63761 2398.2558
## 843 190.63761 2398.2558
## 844 190.63761 2398.2558
## 845 190.63761 2398.2558
## 846 190.63761 2398.2558
## 847 190.63761 2398.2558
## 848 190.63761 2398.2558
## 849 190.63761 2398.2558
## 850 190.63761 2398.2558
## 851 190.63761 2398.2558
## 852 190.63761 2398.2558
## 853 190.63761 2398.2558
## 854 190.63761 2398.2558
## 855 190.63761 2398.2558
## 856 190.63761 2398.2558
## 857 190.63761 2398.2558
## 858 190.63761 2398.2558
## 859 190.63761 2398.2558
## 860 190.63761 2398.2558
## 861 190.63761 2398.2558
## 862 190.63761 2398.2558
## 863 190.63761 2398.2558
## 864 190.63761 2398.2558
## 865 214.36970 1512.2093
## 866 214.36970 1512.2093
## 867 214.36970 1512.2093
## 868 214.36970 1512.2093
## 869 214.36970 1512.2093
## 870 214.36970 1512.2093
## 871 214.36970 1512.2093
## 872 214.36970 1512.2093
## 873 214.36970 1512.2093
## 874 214.36970 1512.2093
## 875 214.36970 1512.2093
## 876 214.36970 1512.2093
## 877 214.36970 1512.2093
## 878 214.36970 1512.2093
## 879 214.36970 1512.2093
## 880 214.36970 1512.2093
## 881 214.36970 1512.2093
## 882 214.36970 1512.2093
## 883 214.36970 1512.2093
## 884 214.36970 1512.2093
## 885 214.36970 1512.2093
## 886 214.36970 1512.2093
## 887 214.36970 1512.2093
## 888 214.36970 1512.2093
## 889 171.23111 2162.7907
## 890 171.23111 2162.7907
## 891 171.23111 2162.7907
## 892 171.23111 2162.7907
## 893 171.23111 2162.7907
## 894 171.23111 2162.7907
## 895 171.23111 2162.7907
## 896 171.23111 2162.7907
## 897 171.23111 2162.7907
## 898 171.23111 2162.7907
## 899 171.23111 2162.7907
## 900 171.23111 2162.7907
## 901 171.23111 2162.7907
## 902 171.23111 2162.7907
## 903 171.23111 2162.7907
## 904 171.23111 2162.7907
## 905 171.23111 2162.7907
## 906 171.23111 2162.7907
## 907 171.23111 2162.7907
## 908 171.23111 2162.7907
## 909 171.23111 2162.7907
## 910 171.23111 2162.7907
## 911 171.23111 2162.7907
## 912 171.23111 2162.7907
## 913 151.16653 4547.9651
## 914 151.16653 4547.9651
## 915 151.16653 4547.9651
## 916 151.16653 4547.9651
## 917 151.16653 4547.9651
## 918 151.16653 4547.9651
## 919 151.16653 4547.9651
## 920 151.16653 4547.9651
## 921 151.16653 4547.9651
## 922 151.16653 4547.9651
## 923 151.16653 4547.9651
## 924 151.16653 4547.9651
## 925 151.16653 4547.9651
## 926 151.16653 4547.9651
## 927 151.16653 4547.9651
## 928 151.16653 4547.9651
## 929 151.16653 4547.9651
## 930 151.16653 4547.9651
## 931 151.16653 4547.9651
## 932 151.16653 4547.9651
## 933 151.16653 4547.9651
## 934 151.16653 4547.9651
## 935 151.16653 4547.9651
## 936 151.16653 4547.9651
## 937 111.09645 3920.0581
## 938 111.09645 3920.0581
## 939 111.09645 3920.0581
## 940 111.09645 3920.0581
## 941 111.09645 3920.0581
## 942 111.09645 3920.0581
## 943 111.09645 3920.0581
## 944 111.09645 3920.0581
## 945 111.09645 3920.0581
## 946 111.09645 3920.0581
## 947 111.09645 3920.0581
## 948 111.09645 3920.0581
## 949 111.09645 3920.0581
## 950 111.09645 3920.0581
## 951 111.09645 3920.0581
## 952 111.09645 3920.0581
## 953 111.09645 3920.0581
## 954 111.09645 3920.0581
## 955 111.09645 3920.0581
## 956 111.09645 3920.0581
## 957 111.09645 3920.0581
## 958 111.09645 3920.0581
## 959 111.09645 3920.0581
## 960 111.09645 3920.0581
## 961 96.92197 217.1512
## 962 96.92197 217.1512
## 963 96.92197 217.1512
## 964 96.92197 217.1512
## 965 96.92197 217.1512
## 966 96.92197 217.1512
## 967 96.92197 217.1512
## 968 96.92197 217.1512
## 969 96.92197 217.1512
## 970 96.92197 217.1512
## 971 96.92197 217.1512
## 972 96.92197 217.1512
## 973 96.92197 217.1512
## 974 96.92197 217.1512
## 975 96.92197 217.1512
## 976 96.92197 217.1512
## 977 96.92197 217.1512
## 978 96.92197 217.1512
## 979 96.92197 217.1512
## 980 96.92197 217.1512
## 981 96.92197 217.1512
## 982 96.92197 217.1512
## 983 96.92197 217.1512
## 984 96.92197 217.1512
## 985 147.30148 819.7674
## 986 147.30148 819.7674
## 987 147.30148 819.7674
## 988 147.30148 819.7674
## 989 147.30148 819.7674
## 990 147.30148 819.7674
## 991 147.30148 819.7674
## 992 147.30148 819.7674
## 993 147.30148 819.7674
## 994 147.30148 819.7674
## 995 147.30148 819.7674
## 996 147.30148 819.7674
## 997 147.30148 819.7674
## 998 147.30148 819.7674
## 999 147.30148 819.7674
## 1000 147.30148 819.7674
## 1001 147.30148 819.7674
## 1002 147.30148 819.7674
## 1003 147.30148 819.7674
## 1004 147.30148 819.7674
## 1005 147.30148 819.7674
## 1006 147.30148 819.7674
## 1007 147.30148 819.7674
## 1008 147.30148 819.7674
## 1009 179.42053 2886.6279
## 1010 179.42053 2886.6279
## 1011 179.42053 2886.6279
## 1012 179.42053 2886.6279
## 1013 179.42053 2886.6279
## 1014 179.42053 2886.6279
## 1015 179.42053 2886.6279
## 1016 179.42053 2886.6279
## 1017 179.42053 2886.6279
## 1018 179.42053 2886.6279
## 1019 179.42053 2886.6279
## 1020 179.42053 2886.6279
## 1021 179.42053 2886.6279
## 1022 179.42053 2886.6279
## 1023 179.42053 2886.6279
## 1024 179.42053 2886.6279
## 1025 179.42053 2886.6279
## 1026 179.42053 2886.6279
## 1027 179.42053 2886.6279
## 1028 179.42053 2886.6279
## 1029 179.42053 2886.6279
## 1030 179.42053 2886.6279
## 1031 179.42053 2886.6279
## 1032 179.42053 2886.6279
## 1033 198.43677 3392.4419
## 1034 198.43677 3392.4419
## 1035 198.43677 3392.4419
## 1036 198.43677 3392.4419
## 1037 198.43677 3392.4419
## 1038 198.43677 3392.4419
## 1039 198.43677 3392.4419
## 1040 198.43677 3392.4419
## 1041 198.43677 3392.4419
## 1042 198.43677 3392.4419
## 1043 198.43677 3392.4419
## 1044 198.43677 3392.4419
## 1045 198.43677 3392.4419
## 1046 198.43677 3392.4419
## 1047 198.43677 3392.4419
## 1048 198.43677 3392.4419
## 1049 198.43677 3392.4419
## 1050 198.43677 3392.4419
## 1051 198.43677 3392.4419
## 1052 198.43677 3392.4419
## 1053 198.43677 3392.4419
## 1054 198.43677 3392.4419
## 1055 198.43677 3392.4419
## 1056 198.43677 3392.4419
## 1057 130.67795 3584.3023
## 1058 130.67795 3584.3023
## 1059 130.67795 3584.3023
## 1060 130.67795 3584.3023
## 1061 130.67795 3584.3023
## 1062 130.67795 3584.3023
## 1063 130.67795 3584.3023
## 1064 130.67795 3584.3023
## 1065 130.67795 3584.3023
## 1066 130.67795 3584.3023
## 1067 130.67795 3584.3023
## 1068 130.67795 3584.3023
## 1069 130.67795 3584.3023
## 1070 130.67795 3584.3023
## 1071 130.67795 3584.3023
## 1072 130.67795 3584.3023
## 1073 130.67795 3584.3023
## 1074 130.67795 3584.3023
## 1075 130.67795 3584.3023
## 1076 130.67795 3584.3023
## 1077 130.67795 3584.3023
## 1078 130.67795 3584.3023
## 1079 130.67795 3584.3023
## 1080 130.67795 3584.3023
## 1081 116.52410 3750.0000
## 1082 116.52410 3750.0000
## 1083 116.52410 3750.0000
## 1084 116.52410 3750.0000
## 1085 116.52410 3750.0000
## 1086 116.52410 3750.0000
## 1087 116.52410 3750.0000
## 1088 116.52410 3750.0000
## 1089 116.52410 3750.0000
## 1090 116.52410 3750.0000
## 1091 116.52410 3750.0000
## 1092 116.52410 3750.0000
## 1093 116.52410 3750.0000
## 1094 116.52410 3750.0000
## 1095 116.52410 3750.0000
## 1096 116.52410 3750.0000
## 1097 116.52410 3750.0000
## 1098 116.52410 3750.0000
## 1099 116.52410 3750.0000
## 1100 116.52410 3750.0000
## 1101 116.52410 3750.0000
## 1102 116.52410 3750.0000
## 1103 116.52410 3750.0000
## 1104 116.52410 3750.0000
## 1105 102.17022 2768.8953
## 1106 102.17022 2768.8953
## 1107 102.17022 2768.8953
## 1108 102.17022 2768.8953
## 1109 102.17022 2768.8953
## 1110 102.17022 2768.8953
## 1111 102.17022 2768.8953
## 1112 102.17022 2768.8953
## 1113 102.17022 2768.8953
## 1114 102.17022 2768.8953
## 1115 102.17022 2768.8953
## 1116 102.17022 2768.8953
## 1117 102.17022 2768.8953
## 1118 102.17022 2768.8953
## 1119 102.17022 2768.8953
## 1120 102.17022 2768.8953
## 1121 102.17022 2768.8953
## 1122 102.17022 2768.8953
## 1123 102.17022 2768.8953
## 1124 102.17022 2768.8953
## 1125 102.17022 2768.8953
## 1126 102.17022 2768.8953
## 1127 102.17022 2768.8953
## 1128 102.17022 2768.8953
## 1129 91.77408 1748.5465
## 1130 91.77408 1748.5465
## 1131 91.77408 1748.5465
## 1132 91.77408 1748.5465
## 1133 91.77408 1748.5465
## 1134 91.77408 1748.5465
## 1135 91.77408 1748.5465
## 1136 91.77408 1748.5465
## 1137 91.77408 1748.5465
## 1138 91.77408 1748.5465
## 1139 91.77408 1748.5465
## 1140 91.77408 1748.5465
## 1141 91.77408 1748.5465
## 1142 91.77408 1748.5465
## 1143 91.77408 1748.5465
## 1144 91.77408 1748.5465
## 1145 91.77408 1748.5465
## 1146 91.77408 1748.5465
## 1147 91.77408 1748.5465
## 1148 91.77408 1748.5465
## 1149 91.77408 1748.5465
## 1150 91.77408 1748.5465
## 1151 91.77408 1748.5465
## 1152 91.77408 1748.5465
## 1153 96.92197 217.1512
## 1154 96.92197 217.1512
## 1155 96.92197 217.1512
## 1156 96.92197 217.1512
## 1157 96.92197 217.1512
## 1158 96.92197 217.1512
## 1159 96.92197 217.1512
## 1160 96.92197 217.1512
## 1161 96.92197 217.1512
## 1162 96.92197 217.1512
## 1163 96.92197 217.1512
## 1164 96.92197 217.1512
## 1165 96.92197 217.1512
## 1166 96.92197 217.1512
## 1167 96.92197 217.1512
## 1168 96.92197 217.1512
## 1169 96.92197 217.1512
## 1170 96.92197 217.1512
## 1171 96.92197 217.1512
## 1172 96.92197 217.1512
## 1173 96.92197 217.1512
## 1174 96.92197 217.1512
## 1175 96.92197 217.1512
## 1176 96.92197 217.1512
## 1177 224.17332 5319.7674
## 1178 224.17332 5319.7674
## 1179 224.17332 5319.7674
## 1180 224.17332 5319.7674
## 1181 224.17332 5319.7674
## 1182 224.17332 5319.7674
## 1183 224.17332 5319.7674
## 1184 224.17332 5319.7674
## 1185 224.17332 5319.7674
## 1186 224.17332 5319.7674
## 1187 224.17332 5319.7674
## 1188 224.17332 5319.7674
## 1189 224.17332 5319.7674
## 1190 224.17332 5319.7674
## 1191 224.17332 5319.7674
## 1192 224.17332 5319.7674
## 1193 224.17332 5319.7674
## 1194 224.17332 5319.7674
## 1195 224.17332 5319.7674
## 1196 224.17332 5319.7674
## 1197 224.17332 5319.7674
## 1198 224.17332 5319.7674
## 1199 224.17332 5319.7674
## 1200 224.17332 5319.7674
## 1201 149.58376 3392.4419
## 1202 149.58376 3392.4419
## 1203 149.58376 3392.4419
## 1204 149.58376 3392.4419
## 1205 149.58376 3392.4419
## 1206 149.58376 3392.4419
## 1207 149.58376 3392.4419
## 1208 149.58376 3392.4419
## 1209 149.58376 3392.4419
## 1210 149.58376 3392.4419
## 1211 149.58376 3392.4419
## 1212 149.58376 3392.4419
## 1213 149.58376 3392.4419
## 1214 149.58376 3392.4419
## 1215 149.58376 3392.4419
## 1216 149.58376 3392.4419
## 1217 149.58376 3392.4419
## 1218 149.58376 3392.4419
## 1219 149.58376 3392.4419
## 1220 149.58376 3392.4419
## 1221 149.58376 3392.4419
## 1222 149.58376 3392.4419
## 1223 149.58376 3392.4419
## 1224 149.58376 3392.4419
## 1225 225.75980 4970.9302
## 1226 225.75980 4970.9302
## 1227 225.75980 4970.9302
## 1228 225.75980 4970.9302
## 1229 225.75980 4970.9302
## 1230 225.75980 4970.9302
## 1231 225.75980 4970.9302
## 1232 225.75980 4970.9302
## 1233 225.75980 4970.9302
## 1234 225.75980 4970.9302
## 1235 225.75980 4970.9302
## 1236 225.75980 4970.9302
## 1237 225.75980 4970.9302
## 1238 225.75980 4970.9302
## 1239 225.75980 4970.9302
## 1240 225.75980 4970.9302
## 1241 225.75980 4970.9302
## 1242 225.75980 4970.9302
## 1243 225.75980 4970.9302
## 1244 225.75980 4970.9302
## 1245 225.75980 4970.9302
## 1246 225.75980 4970.9302
## 1247 225.75980 4970.9302
## 1248 225.75980 4970.9302
## 1249 167.34484 3008.7209
## 1250 167.34484 3008.7209
## 1251 167.34484 3008.7209
## 1252 167.34484 3008.7209
## 1253 167.34484 3008.7209
## 1254 167.34484 3008.7209
## 1255 167.34484 3008.7209
## 1256 167.34484 3008.7209
## 1257 167.34484 3008.7209
## 1258 167.34484 3008.7209
## 1259 167.34484 3008.7209
## 1260 167.34484 3008.7209
## 1261 167.34484 3008.7209
## 1262 167.34484 3008.7209
## 1263 167.34484 3008.7209
## 1264 167.34484 3008.7209
## 1265 167.34484 3008.7209
## 1266 167.34484 3008.7209
## 1267 167.34484 3008.7209
## 1268 167.34484 3008.7209
## 1269 167.34484 3008.7209
## 1270 167.34484 3008.7209
## 1271 167.34484 3008.7209
## 1272 167.34484 3008.7209
## 1273 118.66320 2659.8837
## 1274 118.66320 2659.8837
## 1275 118.66320 2659.8837
## 1276 118.66320 2659.8837
## 1277 118.66320 2659.8837
## 1278 118.66320 2659.8837
## 1279 118.66320 2659.8837
## 1280 118.66320 2659.8837
## 1281 118.66320 2659.8837
## 1282 118.66320 2659.8837
## 1283 118.66320 2659.8837
## 1284 118.66320 2659.8837
## 1285 118.66320 2659.8837
## 1286 118.66320 2659.8837
## 1287 118.66320 2659.8837
## 1288 118.66320 2659.8837
## 1289 118.66320 2659.8837
## 1290 118.66320 2659.8837
## 1291 118.66320 2659.8837
## 1292 118.66320 2659.8837
## 1293 118.66320 2659.8837
## 1294 118.66320 2659.8837
## 1295 118.66320 2659.8837
## 1296 118.66320 2659.8837
## 1297 103.95027 4765.9884
## 1298 103.95027 4765.9884
## 1299 103.95027 4765.9884
## 1300 103.95027 4765.9884
## 1301 103.95027 4765.9884
## 1302 103.95027 4765.9884
## 1303 103.95027 4765.9884
## 1304 103.95027 4765.9884
## 1305 103.95027 4765.9884
## 1306 103.95027 4765.9884
## 1307 103.95027 4765.9884
## 1308 103.95027 4765.9884
## 1309 103.95027 4765.9884
## 1310 103.95027 4765.9884
## 1311 103.95027 4765.9884
## 1312 103.95027 4765.9884
## 1313 103.95027 4765.9884
## 1314 103.95027 4765.9884
## 1315 103.95027 4765.9884
## 1316 103.95027 4765.9884
## 1317 103.95027 4765.9884
## 1318 103.95027 4765.9884
## 1319 103.95027 4765.9884
## 1320 103.95027 4765.9884
## 1321 69.53686 2376.4535
## 1322 69.53686 2376.4535
## 1323 69.53686 2376.4535
## 1324 69.53686 2376.4535
## 1325 69.53686 2376.4535
## 1326 69.53686 2376.4535
## 1327 69.53686 2376.4535
## 1328 69.53686 2376.4535
## 1329 69.53686 2376.4535
## 1330 69.53686 2376.4535
## 1331 69.53686 2376.4535
## 1332 69.53686 2376.4535
## 1333 69.53686 2376.4535
## 1334 69.53686 2376.4535
## 1335 69.53686 2376.4535
## 1336 69.53686 2376.4535
## 1337 69.53686 2376.4535
## 1338 69.53686 2376.4535
## 1339 69.53686 2376.4535
## 1340 69.53686 2376.4535
## 1341 69.53686 2376.4535
## 1342 69.53686 2376.4535
## 1343 69.53686 2376.4535
## 1344 69.53686 2376.4535
## 1345 96.92197 217.1512
## 1346 96.92197 217.1512
## 1347 96.92197 217.1512
## 1348 96.92197 217.1512
## 1349 96.92197 217.1512
## 1350 96.92197 217.1512
## 1351 96.92197 217.1512
## 1352 96.92197 217.1512
## 1353 96.92197 217.1512
## 1354 96.92197 217.1512
## 1355 96.92197 217.1512
## 1356 96.92197 217.1512
## 1357 96.92197 217.1512
## 1358 96.92197 217.1512
## 1359 96.92197 217.1512
## 1360 96.92197 217.1512
## 1361 96.92197 217.1512
## 1362 96.92197 217.1512
## 1363 96.92197 217.1512
## 1364 96.92197 217.1512
## 1365 96.92197 217.1512
## 1366 96.92197 217.1512
## 1367 96.92197 217.1512
## 1368 96.92197 217.1512
## 1369 178.88926 3270.3488
## 1370 178.88926 3270.3488
## 1371 178.88926 3270.3488
## 1372 178.88926 3270.3488
## 1373 178.88926 3270.3488
## 1374 178.88926 3270.3488
## 1375 178.88926 3270.3488
## 1376 178.88926 3270.3488
## 1377 178.88926 3270.3488
## 1378 178.88926 3270.3488
## 1379 178.88926 3270.3488
## 1380 178.88926 3270.3488
## 1381 178.88926 3270.3488
## 1382 178.88926 3270.3488
## 1383 178.88926 3270.3488
## 1384 178.88926 3270.3488
## 1385 178.88926 3270.3488
## 1386 178.88926 3270.3488
## 1387 178.88926 3270.3488
## 1388 178.88926 3270.3488
## 1389 178.88926 3270.3488
## 1390 178.88926 3270.3488
## 1391 178.88926 3270.3488
## 1392 178.88926 3270.3488
## 1393 199.80974 4203.4884
## 1394 199.80974 4203.4884
## 1395 199.80974 4203.4884
## 1396 199.80974 4203.4884
## 1397 199.80974 4203.4884
## 1398 199.80974 4203.4884
## 1399 199.80974 4203.4884
## 1400 199.80974 4203.4884
## 1401 199.80974 4203.4884
## 1402 199.80974 4203.4884
## 1403 199.80974 4203.4884
## 1404 199.80974 4203.4884
## 1405 199.80974 4203.4884
## 1406 199.80974 4203.4884
## 1407 199.80974 4203.4884
## 1408 199.80974 4203.4884
## 1409 199.80974 4203.4884
## 1410 199.80974 4203.4884
## 1411 199.80974 4203.4884
## 1412 199.80974 4203.4884
## 1413 199.80974 4203.4884
## 1414 199.80974 4203.4884
## 1415 199.80974 4203.4884
## 1416 199.80974 4203.4884
## 1417 157.48855 4709.3023
## 1418 157.48855 4709.3023
## 1419 157.48855 4709.3023
## 1420 157.48855 4709.3023
## 1421 157.48855 4709.3023
## 1422 157.48855 4709.3023
## 1423 157.48855 4709.3023
## 1424 157.48855 4709.3023
## 1425 157.48855 4709.3023
## 1426 157.48855 4709.3023
## 1427 157.48855 4709.3023
## 1428 157.48855 4709.3023
## 1429 157.48855 4709.3023
## 1430 157.48855 4709.3023
## 1431 157.48855 4709.3023
## 1432 157.48855 4709.3023
## 1433 157.48855 4709.3023
## 1434 157.48855 4709.3023
## 1435 157.48855 4709.3023
## 1436 157.48855 4709.3023
## 1437 157.48855 4709.3023
## 1438 157.48855 4709.3023
## 1439 157.48855 4709.3023
## 1440 157.48855 4709.3023
## 1441 146.54265 5345.9302
## 1442 146.54265 5345.9302
## 1443 146.54265 5345.9302
## 1444 146.54265 5345.9302
## 1445 146.54265 5345.9302
## 1446 146.54265 5345.9302
## 1447 146.54265 5345.9302
## 1448 146.54265 5345.9302
## 1449 146.54265 5345.9302
## 1450 146.54265 5345.9302
## 1451 146.54265 5345.9302
## 1452 146.54265 5345.9302
## 1453 146.54265 5345.9302
## 1454 146.54265 5345.9302
## 1455 146.54265 5345.9302
## 1456 146.54265 5345.9302
## 1457 146.54265 5345.9302
## 1458 146.54265 5345.9302
## 1459 146.54265 5345.9302
## 1460 146.54265 5345.9302
## 1461 146.54265 5345.9302
## 1462 146.54265 5345.9302
## 1463 146.54265 5345.9302
## 1464 146.54265 5345.9302
## 1465 139.36826 7709.3023
## 1466 139.36826 7709.3023
## 1467 139.36826 7709.3023
## 1468 139.36826 7709.3023
## 1469 139.36826 7709.3023
## 1470 139.36826 7709.3023
## 1471 139.36826 7709.3023
## 1472 139.36826 7709.3023
## 1473 139.36826 7709.3023
## 1474 139.36826 7709.3023
## 1475 139.36826 7709.3023
## 1476 139.36826 7709.3023
## 1477 139.36826 7709.3023
## 1478 139.36826 7709.3023
## 1479 139.36826 7709.3023
## 1480 139.36826 7709.3023
## 1481 139.36826 7709.3023
## 1482 139.36826 7709.3023
## 1483 139.36826 7709.3023
## 1484 139.36826 7709.3023
## 1485 139.36826 7709.3023
## 1486 139.36826 7709.3023
## 1487 139.36826 7709.3023
## 1488 139.36826 7709.3023
## 1489 98.96723 3553.7791
## 1490 98.96723 3553.7791
## 1491 98.96723 3553.7791
## 1492 98.96723 3553.7791
## 1493 98.96723 3553.7791
## 1494 98.96723 3553.7791
## 1495 98.96723 3553.7791
## 1496 98.96723 3553.7791
## 1497 98.96723 3553.7791
## 1498 98.96723 3553.7791
## 1499 98.96723 3553.7791
## 1500 98.96723 3553.7791
## 1501 98.96723 3553.7791
## 1502 98.96723 3553.7791
## 1503 98.96723 3553.7791
## 1504 98.96723 3553.7791
## 1505 98.96723 3553.7791
## 1506 98.96723 3553.7791
## 1507 98.96723 3553.7791
## 1508 98.96723 3553.7791
## 1509 98.96723 3553.7791
## 1510 98.96723 3553.7791
## 1511 98.96723 3553.7791
## 1512 98.96723 3553.7791
## 1513 140.28302 2180.2326
## 1514 140.28302 2180.2326
## 1515 140.28302 2180.2326
## 1516 140.28302 2180.2326
## 1517 140.28302 2180.2326
## 1518 140.28302 2180.2326
## 1519 140.28302 2180.2326
## 1520 140.28302 2180.2326
## 1521 140.28302 2180.2326
## 1522 140.28302 2180.2326
## 1523 140.28302 2180.2326
## 1524 140.28302 2180.2326
## 1525 140.28302 2180.2326
## 1526 140.28302 2180.2326
## 1527 140.28302 2180.2326
## 1528 140.28302 2180.2326
## 1529 140.28302 2180.2326
## 1530 140.28302 2180.2326
## 1531 140.28302 2180.2326
## 1532 140.28302 2180.2326
## 1533 140.28302 2180.2326
## 1534 140.28302 2180.2326
## 1535 140.28302 2180.2326
## 1536 140.28302 2180.2326
## 1537 96.92197 217.1512
## 1538 96.92197 217.1512
## 1539 96.92197 217.1512
## 1540 96.92197 217.1512
## 1541 96.92197 217.1512
## 1542 96.92197 217.1512
## 1543 96.92197 217.1512
## 1544 96.92197 217.1512
## 1545 96.92197 217.1512
## 1546 96.92197 217.1512
## 1547 96.92197 217.1512
## 1548 96.92197 217.1512
## 1549 96.92197 217.1512
## 1550 96.92197 217.1512
## 1551 96.92197 217.1512
## 1552 96.92197 217.1512
## 1553 96.92197 217.1512
## 1554 96.92197 217.1512
## 1555 96.92197 217.1512
## 1556 96.92197 217.1512
## 1557 96.92197 217.1512
## 1558 96.92197 217.1512
## 1559 96.92197 217.1512
## 1560 96.92197 217.1512
## 1561 110.30845 1090.1163
## 1562 110.30845 1090.1163
## 1563 110.30845 1090.1163
## 1564 110.30845 1090.1163
## 1565 110.30845 1090.1163
## 1566 110.30845 1090.1163
## 1567 110.30845 1090.1163
## 1568 110.30845 1090.1163
## 1569 110.30845 1090.1163
## 1570 110.30845 1090.1163
## 1571 110.30845 1090.1163
## 1572 110.30845 1090.1163
## 1573 110.30845 1090.1163
## 1574 110.30845 1090.1163
## 1575 110.30845 1090.1163
## 1576 110.30845 1090.1163
## 1577 110.30845 1090.1163
## 1578 110.30845 1090.1163
## 1579 110.30845 1090.1163
## 1580 110.30845 1090.1163
## 1581 110.30845 1090.1163
## 1582 110.30845 1090.1163
## 1583 110.30845 1090.1163
## 1584 110.30845 1090.1163
## 1585 177.73560 1796.5116
## 1586 177.73560 1796.5116
## 1587 177.73560 1796.5116
## 1588 177.73560 1796.5116
## 1589 177.73560 1796.5116
## 1590 177.73560 1796.5116
## 1591 177.73560 1796.5116
## 1592 177.73560 1796.5116
## 1593 177.73560 1796.5116
## 1594 177.73560 1796.5116
## 1595 177.73560 1796.5116
## 1596 177.73560 1796.5116
## 1597 177.73560 1796.5116
## 1598 177.73560 1796.5116
## 1599 177.73560 1796.5116
## 1600 177.73560 1796.5116
## 1601 177.73560 1796.5116
## 1602 177.73560 1796.5116
## 1603 177.73560 1796.5116
## 1604 177.73560 1796.5116
## 1605 177.73560 1796.5116
## 1606 177.73560 1796.5116
## 1607 177.73560 1796.5116
## 1608 177.73560 1796.5116
## 1609 114.02030 2616.2791
## 1610 114.02030 2616.2791
## 1611 114.02030 2616.2791
## 1612 114.02030 2616.2791
## 1613 114.02030 2616.2791
## 1614 114.02030 2616.2791
## 1615 114.02030 2616.2791
## 1616 114.02030 2616.2791
## 1617 114.02030 2616.2791
## 1618 114.02030 2616.2791
## 1619 114.02030 2616.2791
## 1620 114.02030 2616.2791
## 1621 114.02030 2616.2791
## 1622 114.02030 2616.2791
## 1623 114.02030 2616.2791
## 1624 114.02030 2616.2791
## 1625 114.02030 2616.2791
## 1626 114.02030 2616.2791
## 1627 114.02030 2616.2791
## 1628 114.02030 2616.2791
## 1629 114.02030 2616.2791
## 1630 114.02030 2616.2791
## 1631 114.02030 2616.2791
## 1632 114.02030 2616.2791
## 1633 146.27287 3680.2326
## 1634 146.27287 3680.2326
## 1635 146.27287 3680.2326
## 1636 146.27287 3680.2326
## 1637 146.27287 3680.2326
## 1638 146.27287 3680.2326
## 1639 146.27287 3680.2326
## 1640 146.27287 3680.2326
## 1641 146.27287 3680.2326
## 1642 146.27287 3680.2326
## 1643 146.27287 3680.2326
## 1644 146.27287 3680.2326
## 1645 146.27287 3680.2326
## 1646 146.27287 3680.2326
## 1647 146.27287 3680.2326
## 1648 146.27287 3680.2326
## 1649 146.27287 3680.2326
## 1650 146.27287 3680.2326
## 1651 146.27287 3680.2326
## 1652 146.27287 3680.2326
## 1653 146.27287 3680.2326
## 1654 146.27287 3680.2326
## 1655 146.27287 3680.2326
## 1656 146.27287 3680.2326
## 1657 59.54311 4360.4651
## 1658 59.54311 4360.4651
## 1659 59.54311 4360.4651
## 1660 59.54311 4360.4651
## 1661 59.54311 4360.4651
## 1662 59.54311 4360.4651
## 1663 59.54311 4360.4651
## 1664 59.54311 4360.4651
## 1665 59.54311 4360.4651
## 1666 59.54311 4360.4651
## 1667 59.54311 4360.4651
## 1668 59.54311 4360.4651
## 1669 59.54311 4360.4651
## 1670 59.54311 4360.4651
## 1671 59.54311 4360.4651
## 1672 59.54311 4360.4651
## 1673 59.54311 4360.4651
## 1674 59.54311 4360.4651
## 1675 59.54311 4360.4651
## 1676 59.54311 4360.4651
## 1677 59.54311 4360.4651
## 1678 59.54311 4360.4651
## 1679 59.54311 4360.4651
## 1680 59.54311 4360.4651
## 1681 39.67455 1090.1163
## 1682 39.67455 1090.1163
## 1683 39.67455 1090.1163
## 1684 39.67455 1090.1163
## 1685 39.67455 1090.1163
## 1686 39.67455 1090.1163
## 1687 39.67455 1090.1163
## 1688 39.67455 1090.1163
## 1689 39.67455 1090.1163
## 1690 39.67455 1090.1163
## 1691 39.67455 1090.1163
## 1692 39.67455 1090.1163
## 1693 39.67455 1090.1163
## 1694 39.67455 1090.1163
## 1695 39.67455 1090.1163
## 1696 39.67455 1090.1163
## 1697 39.67455 1090.1163
## 1698 39.67455 1090.1163
## 1699 39.67455 1090.1163
## 1700 39.67455 1090.1163
## 1701 39.67455 1090.1163
## 1702 39.67455 1090.1163
## 1703 39.67455 1090.1163
## 1704 39.67455 1090.1163
## 1705 31.70159 2180.2326
## 1706 31.70159 2180.2326
## 1707 31.70159 2180.2326
## 1708 31.70159 2180.2326
## 1709 31.70159 2180.2326
## 1710 31.70159 2180.2326
## 1711 31.70159 2180.2326
## 1712 31.70159 2180.2326
## 1713 31.70159 2180.2326
## 1714 31.70159 2180.2326
## 1715 31.70159 2180.2326
## 1716 31.70159 2180.2326
## 1717 31.70159 2180.2326
## 1718 31.70159 2180.2326
## 1719 31.70159 2180.2326
## 1720 31.70159 2180.2326
## 1721 31.70159 2180.2326
## 1722 31.70159 2180.2326
## 1723 31.70159 2180.2326
## 1724 31.70159 2180.2326
## 1725 31.70159 2180.2326
## 1726 31.70159 2180.2326
## 1727 31.70159 2180.2326
## 1728 31.70159 2180.2326
## 1729 96.92197 217.1512
## 1730 96.92197 217.1512
## 1731 96.92197 217.1512
## 1732 96.92197 217.1512
## 1733 96.92197 217.1512
## 1734 96.92197 217.1512
## 1735 96.92197 217.1512
## 1736 96.92197 217.1512
## 1737 96.92197 217.1512
## 1738 96.92197 217.1512
## 1739 96.92197 217.1512
## 1740 96.92197 217.1512
## 1741 96.92197 217.1512
## 1742 96.92197 217.1512
## 1743 96.92197 217.1512
## 1744 96.92197 217.1512
## 1745 96.92197 217.1512
## 1746 96.92197 217.1512
## 1747 96.92197 217.1512
## 1748 96.92197 217.1512
## 1749 96.92197 217.1512
## 1750 96.92197 217.1512
## 1751 96.92197 217.1512
## 1752 96.92197 217.1512
## 1753 115.04038 1090.1163
## 1754 115.04038 1090.1163
## 1755 115.04038 1090.1163
## 1756 115.04038 1090.1163
## 1757 115.04038 1090.1163
## 1758 115.04038 1090.1163
## 1759 115.04038 1090.1163
## 1760 115.04038 1090.1163
## 1761 115.04038 1090.1163
## 1762 115.04038 1090.1163
## 1763 115.04038 1090.1163
## 1764 115.04038 1090.1163
## 1765 115.04038 1090.1163
## 1766 115.04038 1090.1163
## 1767 115.04038 1090.1163
## 1768 115.04038 1090.1163
## 1769 115.04038 1090.1163
## 1770 115.04038 1090.1163
## 1771 115.04038 1090.1163
## 1772 115.04038 1090.1163
## 1773 115.04038 1090.1163
## 1774 115.04038 1090.1163
## 1775 115.04038 1090.1163
## 1776 115.04038 1090.1163
## 1777 170.95069 2886.6279
## 1778 170.95069 2886.6279
## 1779 170.95069 2886.6279
## 1780 170.95069 2886.6279
## 1781 170.95069 2886.6279
## 1782 170.95069 2886.6279
## 1783 170.95069 2886.6279
## 1784 170.95069 2886.6279
## 1785 170.95069 2886.6279
## 1786 170.95069 2886.6279
## 1787 170.95069 2886.6279
## 1788 170.95069 2886.6279
## 1789 170.95069 2886.6279
## 1790 170.95069 2886.6279
## 1791 170.95069 2886.6279
## 1792 170.95069 2886.6279
## 1793 170.95069 2886.6279
## 1794 170.95069 2886.6279
## 1795 170.95069 2886.6279
## 1796 170.95069 2886.6279
## 1797 170.95069 2886.6279
## 1798 170.95069 2886.6279
## 1799 170.95069 2886.6279
## 1800 170.95069 2886.6279
## 1801 207.04408 2616.2791
## 1802 207.04408 2616.2791
## 1803 207.04408 2616.2791
## 1804 207.04408 2616.2791
## 1805 207.04408 2616.2791
## 1806 207.04408 2616.2791
## 1807 207.04408 2616.2791
## 1808 207.04408 2616.2791
## 1809 207.04408 2616.2791
## 1810 207.04408 2616.2791
## 1811 207.04408 2616.2791
## 1812 207.04408 2616.2791
## 1813 207.04408 2616.2791
## 1814 207.04408 2616.2791
## 1815 207.04408 2616.2791
## 1816 207.04408 2616.2791
## 1817 207.04408 2616.2791
## 1818 207.04408 2616.2791
## 1819 207.04408 2616.2791
## 1820 207.04408 2616.2791
## 1821 207.04408 2616.2791
## 1822 207.04408 2616.2791
## 1823 207.04408 2616.2791
## 1824 207.04408 2616.2791
## 1825 204.76185 1090.1163
## 1826 204.76185 1090.1163
## 1827 204.76185 1090.1163
## 1828 204.76185 1090.1163
## 1829 204.76185 1090.1163
## 1830 204.76185 1090.1163
## 1831 204.76185 1090.1163
## 1832 204.76185 1090.1163
## 1833 204.76185 1090.1163
## 1834 204.76185 1090.1163
## 1835 204.76185 1090.1163
## 1836 204.76185 1090.1163
## 1837 204.76185 1090.1163
## 1838 204.76185 1090.1163
## 1839 204.76185 1090.1163
## 1840 204.76185 1090.1163
## 1841 204.76185 1090.1163
## 1842 204.76185 1090.1163
## 1843 204.76185 1090.1163
## 1844 204.76185 1090.1163
## 1845 204.76185 1090.1163
## 1846 204.76185 1090.1163
## 1847 204.76185 1090.1163
## 1848 204.76185 1090.1163
## 1849 170.47197 2162.7907
## 1850 170.47197 2162.7907
## 1851 170.47197 2162.7907
## 1852 170.47197 2162.7907
## 1853 170.47197 2162.7907
## 1854 170.47197 2162.7907
## 1855 170.47197 2162.7907
## 1856 170.47197 2162.7907
## 1857 170.47197 2162.7907
## 1858 170.47197 2162.7907
## 1859 170.47197 2162.7907
## 1860 170.47197 2162.7907
## 1861 170.47197 2162.7907
## 1862 170.47197 2162.7907
## 1863 170.47197 2162.7907
## 1864 170.47197 2162.7907
## 1865 170.47197 2162.7907
## 1866 170.47197 2162.7907
## 1867 170.47197 2162.7907
## 1868 170.47197 2162.7907
## 1869 170.47197 2162.7907
## 1870 170.47197 2162.7907
## 1871 170.47197 2162.7907
## 1872 170.47197 2162.7907
## 1873 149.52700 4329.9419
## 1874 149.52700 4329.9419
## 1875 149.52700 4329.9419
## 1876 149.52700 4329.9419
## 1877 149.52700 4329.9419
## 1878 149.52700 4329.9419
## 1879 149.52700 4329.9419
## 1880 149.52700 4329.9419
## 1881 149.52700 4329.9419
## 1882 149.52700 4329.9419
## 1883 149.52700 4329.9419
## 1884 149.52700 4329.9419
## 1885 149.52700 4329.9419
## 1886 149.52700 4329.9419
## 1887 149.52700 4329.9419
## 1888 149.52700 4329.9419
## 1889 149.52700 4329.9419
## 1890 149.52700 4329.9419
## 1891 149.52700 4329.9419
## 1892 149.52700 4329.9419
## 1893 149.52700 4329.9419
## 1894 149.52700 4329.9419
## 1895 149.52700 4329.9419
## 1896 149.52700 4329.9419
## 1897 110.26880 3920.0581
## 1898 110.26880 3920.0581
## 1899 110.26880 3920.0581
## 1900 110.26880 3920.0581
## 1901 110.26880 3920.0581
## 1902 110.26880 3920.0581
## 1903 110.26880 3920.0581
## 1904 110.26880 3920.0581
## 1905 110.26880 3920.0581
## 1906 110.26880 3920.0581
## 1907 110.26880 3920.0581
## 1908 110.26880 3920.0581
## 1909 110.26880 3920.0581
## 1910 110.26880 3920.0581
## 1911 110.26880 3920.0581
## 1912 110.26880 3920.0581
## 1913 110.26880 3920.0581
## 1914 110.26880 3920.0581
## 1915 110.26880 3920.0581
## 1916 110.26880 3920.0581
## 1917 110.26880 3920.0581
## 1918 110.26880 3920.0581
## 1919 110.26880 3920.0581
## 1920 110.26880 3920.0581
## 1921 96.92197 217.1512
## 1922 96.92197 217.1512
## 1923 96.92197 217.1512
## 1924 96.92197 217.1512
## 1925 96.92197 217.1512
## 1926 96.92197 217.1512
## 1927 96.92197 217.1512
## 1928 96.92197 217.1512
## 1929 96.92197 217.1512
## 1930 96.92197 217.1512
## 1931 96.92197 217.1512
## 1932 96.92197 217.1512
## 1933 96.92197 217.1512
## 1934 96.92197 217.1512
## 1935 96.92197 217.1512
## 1936 96.92197 217.1512
## 1937 96.92197 217.1512
## 1938 96.92197 217.1512
## 1939 96.92197 217.1512
## 1940 96.92197 217.1512
## 1941 96.92197 217.1512
## 1942 96.92197 217.1512
## 1943 96.92197 217.1512
## 1944 96.92197 217.1512
## 1945 151.39694 1473.8372
## 1946 151.39694 1473.8372
## 1947 151.39694 1473.8372
## 1948 151.39694 1473.8372
## 1949 151.39694 1473.8372
## 1950 151.39694 1473.8372
## 1951 151.39694 1473.8372
## 1952 151.39694 1473.8372
## 1953 151.39694 1473.8372
## 1954 151.39694 1473.8372
## 1955 151.39694 1473.8372
## 1956 151.39694 1473.8372
## 1957 151.39694 1473.8372
## 1958 151.39694 1473.8372
## 1959 151.39694 1473.8372
## 1960 151.39694 1473.8372
## 1961 151.39694 1473.8372
## 1962 151.39694 1473.8372
## 1963 151.39694 1473.8372
## 1964 151.39694 1473.8372
## 1965 151.39694 1473.8372
## 1966 151.39694 1473.8372
## 1967 151.39694 1473.8372
## 1968 151.39694 1473.8372
## 1969 158.17674 2502.9070
## 1970 158.17674 2502.9070
## 1971 158.17674 2502.9070
## 1972 158.17674 2502.9070
## 1973 158.17674 2502.9070
## 1974 158.17674 2502.9070
## 1975 158.17674 2502.9070
## 1976 158.17674 2502.9070
## 1977 158.17674 2502.9070
## 1978 158.17674 2502.9070
## 1979 158.17674 2502.9070
## 1980 158.17674 2502.9070
## 1981 158.17674 2502.9070
## 1982 158.17674 2502.9070
## 1983 158.17674 2502.9070
## 1984 158.17674 2502.9070
## 1985 158.17674 2502.9070
## 1986 158.17674 2502.9070
## 1987 158.17674 2502.9070
## 1988 158.17674 2502.9070
## 1989 158.17674 2502.9070
## 1990 158.17674 2502.9070
## 1991 158.17674 2502.9070
## 1992 158.17674 2502.9070
## 1993 196.58628 3388.9535
## 1994 196.58628 3388.9535
## 1995 196.58628 3388.9535
## 1996 196.58628 3388.9535
## 1997 196.58628 3388.9535
## 1998 196.58628 3388.9535
## 1999 196.58628 3388.9535
## 2000 196.58628 3388.9535
## 2001 196.58628 3388.9535
## 2002 196.58628 3388.9535
## 2003 196.58628 3388.9535
## 2004 196.58628 3388.9535
## 2005 196.58628 3388.9535
## 2006 196.58628 3388.9535
## 2007 196.58628 3388.9535
## 2008 196.58628 3388.9535
## 2009 196.58628 3388.9535
## 2010 196.58628 3388.9535
## 2011 196.58628 3388.9535
## 2012 196.58628 3388.9535
## 2013 196.58628 3388.9535
## 2014 196.58628 3388.9535
## 2015 196.58628 3388.9535
## 2016 196.58628 3388.9535
## 2017 136.02956 3584.3023
## 2018 136.02956 3584.3023
## 2019 136.02956 3584.3023
## 2020 136.02956 3584.3023
## 2021 136.02956 3584.3023
## 2022 136.02956 3584.3023
## 2023 136.02956 3584.3023
## 2024 136.02956 3584.3023
## 2025 136.02956 3584.3023
## 2026 136.02956 3584.3023
## 2027 136.02956 3584.3023
## 2028 136.02956 3584.3023
## 2029 136.02956 3584.3023
## 2030 136.02956 3584.3023
## 2031 136.02956 3584.3023
## 2032 136.02956 3584.3023
## 2033 136.02956 3584.3023
## 2034 136.02956 3584.3023
## 2035 136.02956 3584.3023
## 2036 136.02956 3584.3023
## 2037 136.02956 3584.3023
## 2038 136.02956 3584.3023
## 2039 136.02956 3584.3023
## 2040 136.02956 3584.3023
## 2041 116.45107 3750.0000
## 2042 116.45107 3750.0000
## 2043 116.45107 3750.0000
## 2044 116.45107 3750.0000
## 2045 116.45107 3750.0000
## 2046 116.45107 3750.0000
## 2047 116.45107 3750.0000
## 2048 116.45107 3750.0000
## 2049 116.45107 3750.0000
## 2050 116.45107 3750.0000
## 2051 116.45107 3750.0000
## 2052 116.45107 3750.0000
## 2053 116.45107 3750.0000
## 2054 116.45107 3750.0000
## 2055 116.45107 3750.0000
## 2056 116.45107 3750.0000
## 2057 116.45107 3750.0000
## 2058 116.45107 3750.0000
## 2059 116.45107 3750.0000
## 2060 116.45107 3750.0000
## 2061 116.45107 3750.0000
## 2062 116.45107 3750.0000
## 2063 116.45107 3750.0000
## 2064 116.45107 3750.0000
## 2065 102.05987 2768.8953
## 2066 102.05987 2768.8953
## 2067 102.05987 2768.8953
## 2068 102.05987 2768.8953
## 2069 102.05987 2768.8953
## 2070 102.05987 2768.8953
## 2071 102.05987 2768.8953
## 2072 102.05987 2768.8953
## 2073 102.05987 2768.8953
## 2074 102.05987 2768.8953
## 2075 102.05987 2768.8953
## 2076 102.05987 2768.8953
## 2077 102.05987 2768.8953
## 2078 102.05987 2768.8953
## 2079 102.05987 2768.8953
## 2080 102.05987 2768.8953
## 2081 102.05987 2768.8953
## 2082 102.05987 2768.8953
## 2083 102.05987 2768.8953
## 2084 102.05987 2768.8953
## 2085 102.05987 2768.8953
## 2086 102.05987 2768.8953
## 2087 102.05987 2768.8953
## 2088 102.05987 2768.8953
## 2089 93.36916 1748.5465
## 2090 93.36916 1748.5465
## 2091 93.36916 1748.5465
## 2092 93.36916 1748.5465
## 2093 93.36916 1748.5465
## 2094 93.36916 1748.5465
## 2095 93.36916 1748.5465
## 2096 93.36916 1748.5465
## 2097 93.36916 1748.5465
## 2098 93.36916 1748.5465
## 2099 93.36916 1748.5465
## 2100 93.36916 1748.5465
## 2101 93.36916 1748.5465
## 2102 93.36916 1748.5465
## 2103 93.36916 1748.5465
## 2104 93.36916 1748.5465
## 2105 93.36916 1748.5465
## 2106 93.36916 1748.5465
## 2107 93.36916 1748.5465
## 2108 93.36916 1748.5465
## 2109 93.36916 1748.5465
## 2110 93.36916 1748.5465
## 2111 93.36916 1748.5465
## 2112 93.36916 1748.5465
## 2113 96.92197 217.1512
## 2114 96.92197 217.1512
## 2115 96.92197 217.1512
## 2116 96.92197 217.1512
## 2117 96.92197 217.1512
## 2118 96.92197 217.1512
## 2119 96.92197 217.1512
## 2120 96.92197 217.1512
## 2121 96.92197 217.1512
## 2122 96.92197 217.1512
## 2123 96.92197 217.1512
## 2124 96.92197 217.1512
## 2125 96.92197 217.1512
## 2126 96.92197 217.1512
## 2127 96.92197 217.1512
## 2128 96.92197 217.1512
## 2129 96.92197 217.1512
## 2130 96.92197 217.1512
## 2131 96.92197 217.1512
## 2132 96.92197 217.1512
## 2133 96.92197 217.1512
## 2134 96.92197 217.1512
## 2135 96.92197 217.1512
## 2136 96.92197 217.1512
## 2137 228.26879 5973.8372
## 2138 228.26879 5973.8372
## 2139 228.26879 5973.8372
## 2140 228.26879 5973.8372
## 2141 228.26879 5973.8372
## 2142 228.26879 5973.8372
## 2143 228.26879 5973.8372
## 2144 228.26879 5973.8372
## 2145 228.26879 5973.8372
## 2146 228.26879 5973.8372
## 2147 228.26879 5973.8372
## 2148 228.26879 5973.8372
## 2149 228.26879 5973.8372
## 2150 228.26879 5973.8372
## 2151 228.26879 5973.8372
## 2152 228.26879 5973.8372
## 2153 228.26879 5973.8372
## 2154 228.26879 5973.8372
## 2155 228.26879 5973.8372
## 2156 228.26879 5973.8372
## 2157 228.26879 5973.8372
## 2158 228.26879 5973.8372
## 2159 228.26879 5973.8372
## 2160 228.26879 5973.8372
## 2161 128.33997 3008.7209
## 2162 128.33997 3008.7209
## 2163 128.33997 3008.7209
## 2164 128.33997 3008.7209
## 2165 128.33997 3008.7209
## 2166 128.33997 3008.7209
## 2167 128.33997 3008.7209
## 2168 128.33997 3008.7209
## 2169 128.33997 3008.7209
## 2170 128.33997 3008.7209
## 2171 128.33997 3008.7209
## 2172 128.33997 3008.7209
## 2173 128.33997 3008.7209
## 2174 128.33997 3008.7209
## 2175 128.33997 3008.7209
## 2176 128.33997 3008.7209
## 2177 128.33997 3008.7209
## 2178 128.33997 3008.7209
## 2179 128.33997 3008.7209
## 2180 128.33997 3008.7209
## 2181 128.33997 3008.7209
## 2182 128.33997 3008.7209
## 2183 128.33997 3008.7209
## 2184 128.33997 3008.7209
## 2185 223.90932 4967.4419
## 2186 223.90932 4967.4419
## 2187 223.90932 4967.4419
## 2188 223.90932 4967.4419
## 2189 223.90932 4967.4419
## 2190 223.90932 4967.4419
## 2191 223.90932 4967.4419
## 2192 223.90932 4967.4419
## 2193 223.90932 4967.4419
## 2194 223.90932 4967.4419
## 2195 223.90932 4967.4419
## 2196 223.90932 4967.4419
## 2197 223.90932 4967.4419
## 2198 223.90932 4967.4419
## 2199 223.90932 4967.4419
## 2200 223.90932 4967.4419
## 2201 223.90932 4967.4419
## 2202 223.90932 4967.4419
## 2203 223.90932 4967.4419
## 2204 223.90932 4967.4419
## 2205 223.90932 4967.4419
## 2206 223.90932 4967.4419
## 2207 223.90932 4967.4419
## 2208 223.90932 4967.4419
## 2209 172.69644 3008.7209
## 2210 172.69644 3008.7209
## 2211 172.69644 3008.7209
## 2212 172.69644 3008.7209
## 2213 172.69644 3008.7209
## 2214 172.69644 3008.7209
## 2215 172.69644 3008.7209
## 2216 172.69644 3008.7209
## 2217 172.69644 3008.7209
## 2218 172.69644 3008.7209
## 2219 172.69644 3008.7209
## 2220 172.69644 3008.7209
## 2221 172.69644 3008.7209
## 2222 172.69644 3008.7209
## 2223 172.69644 3008.7209
## 2224 172.69644 3008.7209
## 2225 172.69644 3008.7209
## 2226 172.69644 3008.7209
## 2227 172.69644 3008.7209
## 2228 172.69644 3008.7209
## 2229 172.69644 3008.7209
## 2230 172.69644 3008.7209
## 2231 172.69644 3008.7209
## 2232 172.69644 3008.7209
## 2233 118.59016 2659.8837
## 2234 118.59016 2659.8837
## 2235 118.59016 2659.8837
## 2236 118.59016 2659.8837
## 2237 118.59016 2659.8837
## 2238 118.59016 2659.8837
## 2239 118.59016 2659.8837
## 2240 118.59016 2659.8837
## 2241 118.59016 2659.8837
## 2242 118.59016 2659.8837
## 2243 118.59016 2659.8837
## 2244 118.59016 2659.8837
## 2245 118.59016 2659.8837
## 2246 118.59016 2659.8837
## 2247 118.59016 2659.8837
## 2248 118.59016 2659.8837
## 2249 118.59016 2659.8837
## 2250 118.59016 2659.8837
## 2251 118.59016 2659.8837
## 2252 118.59016 2659.8837
## 2253 118.59016 2659.8837
## 2254 118.59016 2659.8837
## 2255 118.59016 2659.8837
## 2256 118.59016 2659.8837
## 2257 103.83993 4765.9884
## 2258 103.83993 4765.9884
## 2259 103.83993 4765.9884
## 2260 103.83993 4765.9884
## 2261 103.83993 4765.9884
## 2262 103.83993 4765.9884
## 2263 103.83993 4765.9884
## 2264 103.83993 4765.9884
## 2265 103.83993 4765.9884
## 2266 103.83993 4765.9884
## 2267 103.83993 4765.9884
## 2268 103.83993 4765.9884
## 2269 103.83993 4765.9884
## 2270 103.83993 4765.9884
## 2271 103.83993 4765.9884
## 2272 103.83993 4765.9884
## 2273 103.83993 4765.9884
## 2274 103.83993 4765.9884
## 2275 103.83993 4765.9884
## 2276 103.83993 4765.9884
## 2277 103.83993 4765.9884
## 2278 103.83993 4765.9884
## 2279 103.83993 4765.9884
## 2280 103.83993 4765.9884
## 2281 71.13194 2376.4535
## 2282 71.13194 2376.4535
## 2283 71.13194 2376.4535
## 2284 71.13194 2376.4535
## 2285 71.13194 2376.4535
## 2286 71.13194 2376.4535
## 2287 71.13194 2376.4535
## 2288 71.13194 2376.4535
## 2289 71.13194 2376.4535
## 2290 71.13194 2376.4535
## 2291 71.13194 2376.4535
## 2292 71.13194 2376.4535
## 2293 71.13194 2376.4535
## 2294 71.13194 2376.4535
## 2295 71.13194 2376.4535
## 2296 71.13194 2376.4535
## 2297 71.13194 2376.4535
## 2298 71.13194 2376.4535
## 2299 71.13194 2376.4535
## 2300 71.13194 2376.4535
## 2301 71.13194 2376.4535
## 2302 71.13194 2376.4535
## 2303 71.13194 2376.4535
## 2304 71.13194 2376.4535
## 2305 96.92197 217.1512
## 2306 96.92197 217.1512
## 2307 96.92197 217.1512
## 2308 96.92197 217.1512
## 2309 96.92197 217.1512
## 2310 96.92197 217.1512
## 2311 96.92197 217.1512
## 2312 96.92197 217.1512
## 2313 96.92197 217.1512
## 2314 96.92197 217.1512
## 2315 96.92197 217.1512
## 2316 96.92197 217.1512
## 2317 96.92197 217.1512
## 2318 96.92197 217.1512
## 2319 96.92197 217.1512
## 2320 96.92197 217.1512
## 2321 96.92197 217.1512
## 2322 96.92197 217.1512
## 2323 96.92197 217.1512
## 2324 96.92197 217.1512
## 2325 96.92197 217.1512
## 2326 96.92197 217.1512
## 2327 96.92197 217.1512
## 2328 96.92197 217.1512
## 2329 182.98473 3924.4186
## 2330 182.98473 3924.4186
## 2331 182.98473 3924.4186
## 2332 182.98473 3924.4186
## 2333 182.98473 3924.4186
## 2334 182.98473 3924.4186
## 2335 182.98473 3924.4186
## 2336 182.98473 3924.4186
## 2337 182.98473 3924.4186
## 2338 182.98473 3924.4186
## 2339 182.98473 3924.4186
## 2340 182.98473 3924.4186
## 2341 182.98473 3924.4186
## 2342 182.98473 3924.4186
## 2343 182.98473 3924.4186
## 2344 182.98473 3924.4186
## 2345 182.98473 3924.4186
## 2346 182.98473 3924.4186
## 2347 182.98473 3924.4186
## 2348 182.98473 3924.4186
## 2349 182.98473 3924.4186
## 2350 182.98473 3924.4186
## 2351 182.98473 3924.4186
## 2352 182.98473 3924.4186
## 2353 178.56595 3819.7674
## 2354 178.56595 3819.7674
## 2355 178.56595 3819.7674
## 2356 178.56595 3819.7674
## 2357 178.56595 3819.7674
## 2358 178.56595 3819.7674
## 2359 178.56595 3819.7674
## 2360 178.56595 3819.7674
## 2361 178.56595 3819.7674
## 2362 178.56595 3819.7674
## 2363 178.56595 3819.7674
## 2364 178.56595 3819.7674
## 2365 178.56595 3819.7674
## 2366 178.56595 3819.7674
## 2367 178.56595 3819.7674
## 2368 178.56595 3819.7674
## 2369 178.56595 3819.7674
## 2370 178.56595 3819.7674
## 2371 178.56595 3819.7674
## 2372 178.56595 3819.7674
## 2373 178.56595 3819.7674
## 2374 178.56595 3819.7674
## 2375 178.56595 3819.7674
## 2376 178.56595 3819.7674
## 2377 155.63806 4705.8140
## 2378 155.63806 4705.8140
## 2379 155.63806 4705.8140
## 2380 155.63806 4705.8140
## 2381 155.63806 4705.8140
## 2382 155.63806 4705.8140
## 2383 155.63806 4705.8140
## 2384 155.63806 4705.8140
## 2385 155.63806 4705.8140
## 2386 155.63806 4705.8140
## 2387 155.63806 4705.8140
## 2388 155.63806 4705.8140
## 2389 155.63806 4705.8140
## 2390 155.63806 4705.8140
## 2391 155.63806 4705.8140
## 2392 155.63806 4705.8140
## 2393 155.63806 4705.8140
## 2394 155.63806 4705.8140
## 2395 155.63806 4705.8140
## 2396 155.63806 4705.8140
## 2397 155.63806 4705.8140
## 2398 155.63806 4705.8140
## 2399 155.63806 4705.8140
## 2400 155.63806 4705.8140
## 2401 151.89425 5345.9302
## 2402 151.89425 5345.9302
## 2403 151.89425 5345.9302
## 2404 151.89425 5345.9302
## 2405 151.89425 5345.9302
## 2406 151.89425 5345.9302
## 2407 151.89425 5345.9302
## 2408 151.89425 5345.9302
## 2409 151.89425 5345.9302
## 2410 151.89425 5345.9302
## 2411 151.89425 5345.9302
## 2412 151.89425 5345.9302
## 2413 151.89425 5345.9302
## 2414 151.89425 5345.9302
## 2415 151.89425 5345.9302
## 2416 151.89425 5345.9302
## 2417 151.89425 5345.9302
## 2418 151.89425 5345.9302
## 2419 151.89425 5345.9302
## 2420 151.89425 5345.9302
## 2421 151.89425 5345.9302
## 2422 151.89425 5345.9302
## 2423 151.89425 5345.9302
## 2424 151.89425 5345.9302
## 2425 139.29522 7709.3023
## 2426 139.29522 7709.3023
## 2427 139.29522 7709.3023
## 2428 139.29522 7709.3023
## 2429 139.29522 7709.3023
## 2430 139.29522 7709.3023
## 2431 139.29522 7709.3023
## 2432 139.29522 7709.3023
## 2433 139.29522 7709.3023
## 2434 139.29522 7709.3023
## 2435 139.29522 7709.3023
## 2436 139.29522 7709.3023
## 2437 139.29522 7709.3023
## 2438 139.29522 7709.3023
## 2439 139.29522 7709.3023
## 2440 139.29522 7709.3023
## 2441 139.29522 7709.3023
## 2442 139.29522 7709.3023
## 2443 139.29522 7709.3023
## 2444 139.29522 7709.3023
## 2445 139.29522 7709.3023
## 2446 139.29522 7709.3023
## 2447 139.29522 7709.3023
## 2448 139.29522 7709.3023
## 2449 98.85688 3553.7791
## 2450 98.85688 3553.7791
## 2451 98.85688 3553.7791
## 2452 98.85688 3553.7791
## 2453 98.85688 3553.7791
## 2454 98.85688 3553.7791
## 2455 98.85688 3553.7791
## 2456 98.85688 3553.7791
## 2457 98.85688 3553.7791
## 2458 98.85688 3553.7791
## 2459 98.85688 3553.7791
## 2460 98.85688 3553.7791
## 2461 98.85688 3553.7791
## 2462 98.85688 3553.7791
## 2463 98.85688 3553.7791
## 2464 98.85688 3553.7791
## 2465 98.85688 3553.7791
## 2466 98.85688 3553.7791
## 2467 98.85688 3553.7791
## 2468 98.85688 3553.7791
## 2469 98.85688 3553.7791
## 2470 98.85688 3553.7791
## 2471 98.85688 3553.7791
## 2472 98.85688 3553.7791
## 2473 141.87810 2180.2326
## 2474 141.87810 2180.2326
## 2475 141.87810 2180.2326
## 2476 141.87810 2180.2326
## 2477 141.87810 2180.2326
## 2478 141.87810 2180.2326
## 2479 141.87810 2180.2326
## 2480 141.87810 2180.2326
## 2481 141.87810 2180.2326
## 2482 141.87810 2180.2326
## 2483 141.87810 2180.2326
## 2484 141.87810 2180.2326
## 2485 141.87810 2180.2326
## 2486 141.87810 2180.2326
## 2487 141.87810 2180.2326
## 2488 141.87810 2180.2326
## 2489 141.87810 2180.2326
## 2490 141.87810 2180.2326
## 2491 141.87810 2180.2326
## 2492 141.87810 2180.2326
## 2493 141.87810 2180.2326
## 2494 141.87810 2180.2326
## 2495 141.87810 2180.2326
## 2496 141.87810 2180.2326
## 2497 96.92197 217.1512
## 2498 96.92197 217.1512
## 2499 96.92197 217.1512
## 2500 96.92197 217.1512
## 2501 96.92197 217.1512
## 2502 96.92197 217.1512
## 2503 96.92197 217.1512
## 2504 96.92197 217.1512
## 2505 96.92197 217.1512
## 2506 96.92197 217.1512
## 2507 96.92197 217.1512
## 2508 96.92197 217.1512
## 2509 96.92197 217.1512
## 2510 96.92197 217.1512
## 2511 96.92197 217.1512
## 2512 96.92197 217.1512
## 2513 96.92197 217.1512
## 2514 96.92197 217.1512
## 2515 96.92197 217.1512
## 2516 96.92197 217.1512
## 2517 96.92197 217.1512
## 2518 96.92197 217.1512
## 2519 96.92197 217.1512
## 2520 96.92197 217.1512
## 2521 114.40392 1744.1860
## 2522 114.40392 1744.1860
## 2523 114.40392 1744.1860
## 2524 114.40392 1744.1860
## 2525 114.40392 1744.1860
## 2526 114.40392 1744.1860
## 2527 114.40392 1744.1860
## 2528 114.40392 1744.1860
## 2529 114.40392 1744.1860
## 2530 114.40392 1744.1860
## 2531 114.40392 1744.1860
## 2532 114.40392 1744.1860
## 2533 114.40392 1744.1860
## 2534 114.40392 1744.1860
## 2535 114.40392 1744.1860
## 2536 114.40392 1744.1860
## 2537 114.40392 1744.1860
## 2538 114.40392 1744.1860
## 2539 114.40392 1744.1860
## 2540 114.40392 1744.1860
## 2541 114.40392 1744.1860
## 2542 114.40392 1744.1860
## 2543 114.40392 1744.1860
## 2544 114.40392 1744.1860
## 2545 156.49181 1412.7907
## 2546 156.49181 1412.7907
## 2547 156.49181 1412.7907
## 2548 156.49181 1412.7907
## 2549 156.49181 1412.7907
## 2550 156.49181 1412.7907
## 2551 156.49181 1412.7907
## 2552 156.49181 1412.7907
## 2553 156.49181 1412.7907
## 2554 156.49181 1412.7907
## 2555 156.49181 1412.7907
## 2556 156.49181 1412.7907
## 2557 156.49181 1412.7907
## 2558 156.49181 1412.7907
## 2559 156.49181 1412.7907
## 2560 156.49181 1412.7907
## 2561 156.49181 1412.7907
## 2562 156.49181 1412.7907
## 2563 156.49181 1412.7907
## 2564 156.49181 1412.7907
## 2565 156.49181 1412.7907
## 2566 156.49181 1412.7907
## 2567 156.49181 1412.7907
## 2568 156.49181 1412.7907
## 2569 112.16981 2612.7907
## 2570 112.16981 2612.7907
## 2571 112.16981 2612.7907
## 2572 112.16981 2612.7907
## 2573 112.16981 2612.7907
## 2574 112.16981 2612.7907
## 2575 112.16981 2612.7907
## 2576 112.16981 2612.7907
## 2577 112.16981 2612.7907
## 2578 112.16981 2612.7907
## 2579 112.16981 2612.7907
## 2580 112.16981 2612.7907
## 2581 112.16981 2612.7907
## 2582 112.16981 2612.7907
## 2583 112.16981 2612.7907
## 2584 112.16981 2612.7907
## 2585 112.16981 2612.7907
## 2586 112.16981 2612.7907
## 2587 112.16981 2612.7907
## 2588 112.16981 2612.7907
## 2589 112.16981 2612.7907
## 2590 112.16981 2612.7907
## 2591 112.16981 2612.7907
## 2592 112.16981 2612.7907
## 2593 151.62447 3680.2326
## 2594 151.62447 3680.2326
## 2595 151.62447 3680.2326
## 2596 151.62447 3680.2326
## 2597 151.62447 3680.2326
## 2598 151.62447 3680.2326
## 2599 151.62447 3680.2326
## 2600 151.62447 3680.2326
## 2601 151.62447 3680.2326
## 2602 151.62447 3680.2326
## 2603 151.62447 3680.2326
## 2604 151.62447 3680.2326
## 2605 151.62447 3680.2326
## 2606 151.62447 3680.2326
## 2607 151.62447 3680.2326
## 2608 151.62447 3680.2326
## 2609 151.62447 3680.2326
## 2610 151.62447 3680.2326
## 2611 151.62447 3680.2326
## 2612 151.62447 3680.2326
## 2613 151.62447 3680.2326
## 2614 151.62447 3680.2326
## 2615 151.62447 3680.2326
## 2616 151.62447 3680.2326
## 2617 59.47007 4360.4651
## 2618 59.47007 4360.4651
## 2619 59.47007 4360.4651
## 2620 59.47007 4360.4651
## 2621 59.47007 4360.4651
## 2622 59.47007 4360.4651
## 2623 59.47007 4360.4651
## 2624 59.47007 4360.4651
## 2625 59.47007 4360.4651
## 2626 59.47007 4360.4651
## 2627 59.47007 4360.4651
## 2628 59.47007 4360.4651
## 2629 59.47007 4360.4651
## 2630 59.47007 4360.4651
## 2631 59.47007 4360.4651
## total_metaecosystem_Cep_indiv total_metaecosystem_Col_indiv
## 1 1794.767 4812.20930
## 2 1794.767 4812.20930
## 3 1794.767 4812.20930
## 4 1794.767 4812.20930
## 5 1794.767 4812.20930
## 6 1794.767 4812.20930
## 7 1794.767 4812.20930
## 8 1794.767 4812.20930
## 9 1794.767 4812.20930
## 10 1794.767 4812.20930
## 11 1794.767 4812.20930
## 12 1794.767 4812.20930
## 13 1794.767 4812.20930
## 14 1794.767 4812.20930
## 15 1794.767 4812.20930
## 16 1794.767 4812.20930
## 17 1794.767 4812.20930
## 18 1794.767 4812.20930
## 19 1794.767 4812.20930
## 20 1794.767 4812.20930
## 21 1794.767 4812.20930
## 22 1794.767 4812.20930
## 23 1794.767 4812.20930
## 24 1794.767 4812.20930
## 25 8056.395 20305.81395
## 26 8056.395 20305.81395
## 27 8056.395 20305.81395
## 28 8056.395 20305.81395
## 29 8056.395 20305.81395
## 30 8056.395 20305.81395
## 31 8056.395 20305.81395
## 32 8056.395 20305.81395
## 33 8056.395 20305.81395
## 34 8056.395 20305.81395
## 35 8056.395 20305.81395
## 36 8056.395 20305.81395
## 37 8056.395 20305.81395
## 38 8056.395 20305.81395
## 39 8056.395 20305.81395
## 40 8056.395 20305.81395
## 41 8056.395 20305.81395
## 42 8056.395 20305.81395
## 43 8056.395 20305.81395
## 44 8056.395 20305.81395
## 45 8056.395 20305.81395
## 46 8056.395 20305.81395
## 47 8056.395 20305.81395
## 48 8056.395 20305.81395
## 49 11759.302 16356.97674
## 50 11759.302 16356.97674
## 51 11759.302 16356.97674
## 52 11759.302 16356.97674
## 53 11759.302 16356.97674
## 54 11759.302 16356.97674
## 55 11759.302 16356.97674
## 56 11759.302 16356.97674
## 57 11759.302 16356.97674
## 58 11759.302 16356.97674
## 59 11759.302 16356.97674
## 60 11759.302 16356.97674
## 61 11759.302 16356.97674
## 62 11759.302 16356.97674
## 63 11759.302 16356.97674
## 64 11759.302 16356.97674
## 65 11759.302 16356.97674
## 66 11759.302 16356.97674
## 67 11759.302 16356.97674
## 68 11759.302 16356.97674
## 69 11759.302 16356.97674
## 70 11759.302 16356.97674
## 71 11759.302 16356.97674
## 72 11759.302 16356.97674
## 73 6552.907 6973.25581
## 74 6552.907 6973.25581
## 75 6552.907 6973.25581
## 76 6552.907 6973.25581
## 77 6552.907 6973.25581
## 78 6552.907 6973.25581
## 79 6552.907 6973.25581
## 80 6552.907 6973.25581
## 81 6552.907 6973.25581
## 82 6552.907 6973.25581
## 83 6552.907 6973.25581
## 84 6552.907 6973.25581
## 85 6552.907 6973.25581
## 86 6552.907 6973.25581
## 87 6552.907 6973.25581
## 88 6552.907 6973.25581
## 89 6552.907 6973.25581
## 90 6552.907 6973.25581
## 91 6552.907 6973.25581
## 92 6552.907 6973.25581
## 93 6552.907 6973.25581
## 94 6552.907 6973.25581
## 95 6552.907 6973.25581
## 96 6552.907 6973.25581
## 97 9326.163 3912.20930
## 98 9326.163 3912.20930
## 99 9326.163 3912.20930
## 100 9326.163 3912.20930
## 101 9326.163 3912.20930
## 102 9326.163 3912.20930
## 103 9326.163 3912.20930
## 104 9326.163 3912.20930
## 105 9326.163 3912.20930
## 106 9326.163 3912.20930
## 107 9326.163 3912.20930
## 108 9326.163 3912.20930
## 109 9326.163 3912.20930
## 110 9326.163 3912.20930
## 111 9326.163 3912.20930
## 112 9326.163 3912.20930
## 113 9326.163 3912.20930
## 114 9326.163 3912.20930
## 115 9326.163 3912.20930
## 116 9326.163 3912.20930
## 117 9326.163 3912.20930
## 118 9326.163 3912.20930
## 119 9326.163 3912.20930
## 120 9326.163 3912.20930
## 121 9818.023 0.00000
## 122 9818.023 0.00000
## 123 9818.023 0.00000
## 124 9818.023 0.00000
## 125 9818.023 0.00000
## 126 9818.023 0.00000
## 127 9818.023 0.00000
## 128 9818.023 0.00000
## 129 9818.023 0.00000
## 130 9818.023 0.00000
## 131 9818.023 0.00000
## 132 9818.023 0.00000
## 133 9818.023 0.00000
## 134 9818.023 0.00000
## 135 9818.023 0.00000
## 136 9818.023 0.00000
## 137 9818.023 0.00000
## 138 9818.023 0.00000
## 139 9818.023 0.00000
## 140 9818.023 0.00000
## 141 9818.023 0.00000
## 142 9818.023 0.00000
## 143 9818.023 0.00000
## 144 9818.023 0.00000
## 145 15800.581 418.60465
## 146 15800.581 418.60465
## 147 15800.581 418.60465
## 148 15800.581 418.60465
## 149 15800.581 418.60465
## 150 15800.581 418.60465
## 151 15800.581 418.60465
## 152 15800.581 418.60465
## 153 15800.581 418.60465
## 154 15800.581 418.60465
## 155 15800.581 418.60465
## 156 15800.581 418.60465
## 157 15800.581 418.60465
## 158 15800.581 418.60465
## 159 15800.581 418.60465
## 160 15800.581 418.60465
## 161 15800.581 418.60465
## 162 15800.581 418.60465
## 163 15800.581 418.60465
## 164 15800.581 418.60465
## 165 15800.581 418.60465
## 166 15800.581 418.60465
## 167 15800.581 418.60465
## 168 15800.581 418.60465
## 169 15422.093 0.00000
## 170 15422.093 0.00000
## 171 15422.093 0.00000
## 172 15422.093 0.00000
## 173 15422.093 0.00000
## 174 15422.093 0.00000
## 175 15422.093 0.00000
## 176 15422.093 0.00000
## 177 15422.093 0.00000
## 178 15422.093 0.00000
## 179 15422.093 0.00000
## 180 15422.093 0.00000
## 181 15422.093 0.00000
## 182 15422.093 0.00000
## 183 15422.093 0.00000
## 184 15422.093 0.00000
## 185 15422.093 0.00000
## 186 15422.093 0.00000
## 187 15422.093 0.00000
## 188 15422.093 0.00000
## 189 15422.093 0.00000
## 190 15422.093 0.00000
## 191 15422.093 0.00000
## 192 15422.093 0.00000
## 193 1794.767 4812.20930
## 194 1794.767 4812.20930
## 195 1794.767 4812.20930
## 196 1794.767 4812.20930
## 197 1794.767 4812.20930
## 198 1794.767 4812.20930
## 199 1794.767 4812.20930
## 200 1794.767 4812.20930
## 201 1794.767 4812.20930
## 202 1794.767 4812.20930
## 203 1794.767 4812.20930
## 204 1794.767 4812.20930
## 205 1794.767 4812.20930
## 206 1794.767 4812.20930
## 207 1794.767 4812.20930
## 208 1794.767 4812.20930
## 209 1794.767 4812.20930
## 210 1794.767 4812.20930
## 211 1794.767 4812.20930
## 212 1794.767 4812.20930
## 213 1794.767 4812.20930
## 214 1794.767 4812.20930
## 215 1794.767 4812.20930
## 216 1794.767 4812.20930
## 217 9695.930 12404.65116
## 218 9695.930 12404.65116
## 219 9695.930 12404.65116
## 220 9695.930 12404.65116
## 221 9695.930 12404.65116
## 222 9695.930 12404.65116
## 223 9695.930 12404.65116
## 224 9695.930 12404.65116
## 225 9695.930 12404.65116
## 226 9695.930 12404.65116
## 227 9695.930 12404.65116
## 228 9695.930 12404.65116
## 229 9695.930 12404.65116
## 230 9695.930 12404.65116
## 231 9695.930 12404.65116
## 232 9695.930 12404.65116
## 233 9695.930 12404.65116
## 234 9695.930 12404.65116
## 235 9695.930 12404.65116
## 236 9695.930 12404.65116
## 237 9695.930 12404.65116
## 238 9695.930 12404.65116
## 239 9695.930 12404.65116
## 240 9695.930 12404.65116
## 241 12648.837 5159.30233
## 242 12648.837 5159.30233
## 243 12648.837 5159.30233
## 244 12648.837 5159.30233
## 245 12648.837 5159.30233
## 246 12648.837 5159.30233
## 247 12648.837 5159.30233
## 248 12648.837 5159.30233
## 249 12648.837 5159.30233
## 250 12648.837 5159.30233
## 251 12648.837 5159.30233
## 252 12648.837 5159.30233
## 253 12648.837 5159.30233
## 254 12648.837 5159.30233
## 255 12648.837 5159.30233
## 256 12648.837 5159.30233
## 257 12648.837 5159.30233
## 258 12648.837 5159.30233
## 259 12648.837 5159.30233
## 260 12648.837 5159.30233
## 261 12648.837 5159.30233
## 262 12648.837 5159.30233
## 263 12648.837 5159.30233
## 264 12648.837 5159.30233
## 265 14872.674 3685.46512
## 266 14872.674 3685.46512
## 267 14872.674 3685.46512
## 268 14872.674 3685.46512
## 269 14872.674 3685.46512
## 270 14872.674 3685.46512
## 271 14872.674 3685.46512
## 272 14872.674 3685.46512
## 273 14872.674 3685.46512
## 274 14872.674 3685.46512
## 275 14872.674 3685.46512
## 276 14872.674 3685.46512
## 277 14872.674 3685.46512
## 278 14872.674 3685.46512
## 279 14872.674 3685.46512
## 280 14872.674 3685.46512
## 281 14872.674 3685.46512
## 282 14872.674 3685.46512
## 283 14872.674 3685.46512
## 284 14872.674 3685.46512
## 285 14872.674 3685.46512
## 286 14872.674 3685.46512
## 287 14872.674 3685.46512
## 288 14872.674 3685.46512
## 289 13006.395 397.67442
## 290 13006.395 397.67442
## 291 13006.395 397.67442
## 292 13006.395 397.67442
## 293 13006.395 397.67442
## 294 13006.395 397.67442
## 295 13006.395 397.67442
## 296 13006.395 397.67442
## 297 13006.395 397.67442
## 298 13006.395 397.67442
## 299 13006.395 397.67442
## 300 13006.395 397.67442
## 301 13006.395 397.67442
## 302 13006.395 397.67442
## 303 13006.395 397.67442
## 304 13006.395 397.67442
## 305 13006.395 397.67442
## 306 13006.395 397.67442
## 307 13006.395 397.67442
## 308 13006.395 397.67442
## 309 13006.395 397.67442
## 310 13006.395 397.67442
## 311 13006.395 397.67442
## 312 13006.395 397.67442
## 313 8248.256 837.20930
## 314 8248.256 837.20930
## 315 8248.256 837.20930
## 316 8248.256 837.20930
## 317 8248.256 837.20930
## 318 8248.256 837.20930
## 319 8248.256 837.20930
## 320 8248.256 837.20930
## 321 8248.256 837.20930
## 322 8248.256 837.20930
## 323 8248.256 837.20930
## 324 8248.256 837.20930
## 325 8248.256 837.20930
## 326 8248.256 837.20930
## 327 8248.256 837.20930
## 328 8248.256 837.20930
## 329 8248.256 837.20930
## 330 8248.256 837.20930
## 331 8248.256 837.20930
## 332 8248.256 837.20930
## 333 8248.256 837.20930
## 334 8248.256 837.20930
## 335 8248.256 837.20930
## 336 8248.256 837.20930
## 337 12547.674 0.00000
## 338 12547.674 0.00000
## 339 12547.674 0.00000
## 340 12547.674 0.00000
## 341 12547.674 0.00000
## 342 12547.674 0.00000
## 343 12547.674 0.00000
## 344 12547.674 0.00000
## 345 12547.674 0.00000
## 346 12547.674 0.00000
## 347 12547.674 0.00000
## 348 12547.674 0.00000
## 349 12547.674 0.00000
## 350 12547.674 0.00000
## 351 12547.674 0.00000
## 352 12547.674 0.00000
## 353 12547.674 0.00000
## 354 12547.674 0.00000
## 355 12547.674 0.00000
## 356 12547.674 0.00000
## 357 12547.674 0.00000
## 358 12547.674 0.00000
## 359 12547.674 0.00000
## 360 12547.674 0.00000
## 361 10438.081 0.00000
## 362 10438.081 0.00000
## 363 10438.081 0.00000
## 364 10438.081 0.00000
## 365 10438.081 0.00000
## 366 10438.081 0.00000
## 367 10438.081 0.00000
## 368 10438.081 0.00000
## 369 10438.081 0.00000
## 370 10438.081 0.00000
## 371 10438.081 0.00000
## 372 10438.081 0.00000
## 373 10438.081 0.00000
## 374 10438.081 0.00000
## 375 10438.081 0.00000
## 376 10438.081 0.00000
## 377 10438.081 0.00000
## 378 10438.081 0.00000
## 379 10438.081 0.00000
## 380 10438.081 0.00000
## 381 10438.081 0.00000
## 382 10438.081 0.00000
## 383 10438.081 0.00000
## 384 10438.081 0.00000
## 385 1794.767 4812.20930
## 386 1794.767 4812.20930
## 387 1794.767 4812.20930
## 388 1794.767 4812.20930
## 389 1794.767 4812.20930
## 390 1794.767 4812.20930
## 391 1794.767 4812.20930
## 392 1794.767 4812.20930
## 393 1794.767 4812.20930
## 394 1794.767 4812.20930
## 395 1794.767 4812.20930
## 396 1794.767 4812.20930
## 397 1794.767 4812.20930
## 398 1794.767 4812.20930
## 399 1794.767 4812.20930
## 400 1794.767 4812.20930
## 401 1794.767 4812.20930
## 402 1794.767 4812.20930
## 403 1794.767 4812.20930
## 404 1794.767 4812.20930
## 405 1794.767 4812.20930
## 406 1794.767 4812.20930
## 407 1794.767 4812.20930
## 408 1794.767 4812.20930
## 409 8344.186 17236.04651
## 410 8344.186 17236.04651
## 411 8344.186 17236.04651
## 412 8344.186 17236.04651
## 413 8344.186 17236.04651
## 414 8344.186 17236.04651
## 415 8344.186 17236.04651
## 416 8344.186 17236.04651
## 417 8344.186 17236.04651
## 418 8344.186 17236.04651
## 419 8344.186 17236.04651
## 420 8344.186 17236.04651
## 421 8344.186 17236.04651
## 422 8344.186 17236.04651
## 423 8344.186 17236.04651
## 424 8344.186 17236.04651
## 425 8344.186 17236.04651
## 426 8344.186 17236.04651
## 427 8344.186 17236.04651
## 428 8344.186 17236.04651
## 429 8344.186 17236.04651
## 430 8344.186 17236.04651
## 431 8344.186 17236.04651
## 432 8344.186 17236.04651
## 433 12762.209 6022.67442
## 434 12762.209 6022.67442
## 435 12762.209 6022.67442
## 436 12762.209 6022.67442
## 437 12762.209 6022.67442
## 438 12762.209 6022.67442
## 439 12762.209 6022.67442
## 440 12762.209 6022.67442
## 441 12762.209 6022.67442
## 442 12762.209 6022.67442
## 443 12762.209 6022.67442
## 444 12762.209 6022.67442
## 445 12762.209 6022.67442
## 446 12762.209 6022.67442
## 447 12762.209 6022.67442
## 448 12762.209 6022.67442
## 449 12762.209 6022.67442
## 450 12762.209 6022.67442
## 451 12762.209 6022.67442
## 452 12762.209 6022.67442
## 453 12762.209 6022.67442
## 454 12762.209 6022.67442
## 455 12762.209 6022.67442
## 456 12762.209 6022.67442
## 457 6770.930 4060.46512
## 458 6770.930 4060.46512
## 459 6770.930 4060.46512
## 460 6770.930 4060.46512
## 461 6770.930 4060.46512
## 462 6770.930 4060.46512
## 463 6770.930 4060.46512
## 464 6770.930 4060.46512
## 465 6770.930 4060.46512
## 466 6770.930 4060.46512
## 467 6770.930 4060.46512
## 468 6770.930 4060.46512
## 469 6770.930 4060.46512
## 470 6770.930 4060.46512
## 471 6770.930 4060.46512
## 472 6770.930 4060.46512
## 473 6770.930 4060.46512
## 474 6770.930 4060.46512
## 475 6770.930 4060.46512
## 476 6770.930 4060.46512
## 477 6770.930 4060.46512
## 478 6770.930 4060.46512
## 479 6770.930 4060.46512
## 480 6770.930 4060.46512
## 481 10730.233 397.67442
## 482 10730.233 397.67442
## 483 10730.233 397.67442
## 484 10730.233 397.67442
## 485 10730.233 397.67442
## 486 10730.233 397.67442
## 487 10730.233 397.67442
## 488 10730.233 397.67442
## 489 10730.233 397.67442
## 490 10730.233 397.67442
## 491 10730.233 397.67442
## 492 10730.233 397.67442
## 493 10730.233 397.67442
## 494 10730.233 397.67442
## 495 10730.233 397.67442
## 496 10730.233 397.67442
## 497 10730.233 397.67442
## 498 10730.233 397.67442
## 499 10730.233 397.67442
## 500 10730.233 397.67442
## 501 10730.233 397.67442
## 502 10730.233 397.67442
## 503 10730.233 397.67442
## 504 10730.233 397.67442
## 505 3722.093 0.00000
## 506 3722.093 0.00000
## 507 3722.093 0.00000
## 508 3722.093 0.00000
## 509 3722.093 0.00000
## 510 3722.093 0.00000
## 511 3722.093 0.00000
## 512 3722.093 0.00000
## 513 3722.093 0.00000
## 514 3722.093 0.00000
## 515 3722.093 0.00000
## 516 3722.093 0.00000
## 517 3722.093 0.00000
## 518 3722.093 0.00000
## 519 3722.093 0.00000
## 520 3722.093 0.00000
## 521 3722.093 0.00000
## 522 3722.093 0.00000
## 523 3722.093 0.00000
## 524 3722.093 0.00000
## 525 3722.093 0.00000
## 526 3722.093 0.00000
## 527 3722.093 0.00000
## 528 3722.093 0.00000
## 529 13943.023 327.03488
## 530 13943.023 327.03488
## 531 13943.023 327.03488
## 532 13943.023 327.03488
## 533 13943.023 327.03488
## 534 13943.023 327.03488
## 535 13943.023 327.03488
## 536 13943.023 327.03488
## 537 13943.023 327.03488
## 538 13943.023 327.03488
## 539 13943.023 327.03488
## 540 13943.023 327.03488
## 541 13943.023 327.03488
## 542 13943.023 327.03488
## 543 13943.023 327.03488
## 544 13943.023 327.03488
## 545 13943.023 327.03488
## 546 13943.023 327.03488
## 547 13943.023 327.03488
## 548 13943.023 327.03488
## 549 13943.023 327.03488
## 550 13943.023 327.03488
## 551 13943.023 327.03488
## 552 13943.023 327.03488
## 553 19956.977 0.00000
## 554 19956.977 0.00000
## 555 19956.977 0.00000
## 556 19956.977 0.00000
## 557 19956.977 0.00000
## 558 19956.977 0.00000
## 559 19956.977 0.00000
## 560 19956.977 0.00000
## 561 19956.977 0.00000
## 562 19956.977 0.00000
## 563 19956.977 0.00000
## 564 19956.977 0.00000
## 565 19956.977 0.00000
## 566 19956.977 0.00000
## 567 19956.977 0.00000
## 568 19956.977 0.00000
## 569 19956.977 0.00000
## 570 19956.977 0.00000
## 571 19956.977 0.00000
## 572 19956.977 0.00000
## 573 19956.977 0.00000
## 574 19956.977 0.00000
## 575 19956.977 0.00000
## 576 19956.977 0.00000
## 577 1794.767 4812.20930
## 578 1794.767 4812.20930
## 579 1794.767 4812.20930
## 580 1794.767 4812.20930
## 581 1794.767 4812.20930
## 582 1794.767 4812.20930
## 583 1794.767 4812.20930
## 584 1794.767 4812.20930
## 585 1794.767 4812.20930
## 586 1794.767 4812.20930
## 587 1794.767 4812.20930
## 588 1794.767 4812.20930
## 589 1794.767 4812.20930
## 590 1794.767 4812.20930
## 591 1794.767 4812.20930
## 592 1794.767 4812.20930
## 593 1794.767 4812.20930
## 594 1794.767 4812.20930
## 595 1794.767 4812.20930
## 596 1794.767 4812.20930
## 597 1794.767 4812.20930
## 598 1794.767 4812.20930
## 599 1794.767 4812.20930
## 600 1794.767 4812.20930
## 601 10227.907 11567.44186
## 602 10227.907 11567.44186
## 603 10227.907 11567.44186
## 604 10227.907 11567.44186
## 605 10227.907 11567.44186
## 606 10227.907 11567.44186
## 607 10227.907 11567.44186
## 608 10227.907 11567.44186
## 609 10227.907 11567.44186
## 610 10227.907 11567.44186
## 611 10227.907 11567.44186
## 612 10227.907 11567.44186
## 613 10227.907 11567.44186
## 614 10227.907 11567.44186
## 615 10227.907 11567.44186
## 616 10227.907 11567.44186
## 617 10227.907 11567.44186
## 618 10227.907 11567.44186
## 619 10227.907 11567.44186
## 620 10227.907 11567.44186
## 621 10227.907 11567.44186
## 622 10227.907 11567.44186
## 623 10227.907 11567.44186
## 624 10227.907 11567.44186
## 625 17148.837 2072.09302
## 626 17148.837 2072.09302
## 627 17148.837 2072.09302
## 628 17148.837 2072.09302
## 629 17148.837 2072.09302
## 630 17148.837 2072.09302
## 631 17148.837 2072.09302
## 632 17148.837 2072.09302
## 633 17148.837 2072.09302
## 634 17148.837 2072.09302
## 635 17148.837 2072.09302
## 636 17148.837 2072.09302
## 637 17148.837 2072.09302
## 638 17148.837 2072.09302
## 639 17148.837 2072.09302
## 640 17148.837 2072.09302
## 641 17148.837 2072.09302
## 642 17148.837 2072.09302
## 643 17148.837 2072.09302
## 644 17148.837 2072.09302
## 645 17148.837 2072.09302
## 646 17148.837 2072.09302
## 647 17148.837 2072.09302
## 648 17148.837 2072.09302
## 649 10224.419 1513.95349
## 650 10224.419 1513.95349
## 651 10224.419 1513.95349
## 652 10224.419 1513.95349
## 653 10224.419 1513.95349
## 654 10224.419 1513.95349
## 655 10224.419 1513.95349
## 656 10224.419 1513.95349
## 657 10224.419 1513.95349
## 658 10224.419 1513.95349
## 659 10224.419 1513.95349
## 660 10224.419 1513.95349
## 661 10224.419 1513.95349
## 662 10224.419 1513.95349
## 663 10224.419 1513.95349
## 664 10224.419 1513.95349
## 665 10224.419 1513.95349
## 666 10224.419 1513.95349
## 667 10224.419 1513.95349
## 668 10224.419 1513.95349
## 669 10224.419 1513.95349
## 670 10224.419 1513.95349
## 671 10224.419 1513.95349
## 672 10224.419 1513.95349
## 673 10660.465 397.67442
## 674 10660.465 397.67442
## 675 10660.465 397.67442
## 676 10660.465 397.67442
## 677 10660.465 397.67442
## 678 10660.465 397.67442
## 679 10660.465 397.67442
## 680 10660.465 397.67442
## 681 10660.465 397.67442
## 682 10660.465 397.67442
## 683 10660.465 397.67442
## 684 10660.465 397.67442
## 685 10660.465 397.67442
## 686 10660.465 397.67442
## 687 10660.465 397.67442
## 688 10660.465 397.67442
## 689 10660.465 397.67442
## 690 10660.465 397.67442
## 691 10660.465 397.67442
## 692 10660.465 397.67442
## 693 10660.465 397.67442
## 694 10660.465 397.67442
## 695 10660.465 397.67442
## 696 10660.465 397.67442
## 697 5344.186 0.00000
## 698 5344.186 0.00000
## 699 5344.186 0.00000
## 700 5344.186 0.00000
## 701 5344.186 0.00000
## 702 5344.186 0.00000
## 703 5344.186 0.00000
## 704 5344.186 0.00000
## 705 5344.186 0.00000
## 706 5344.186 0.00000
## 707 5344.186 0.00000
## 708 5344.186 0.00000
## 709 5344.186 0.00000
## 710 5344.186 0.00000
## 711 5344.186 0.00000
## 712 5344.186 0.00000
## 713 5344.186 0.00000
## 714 5344.186 0.00000
## 715 5344.186 0.00000
## 716 5344.186 0.00000
## 717 5344.186 0.00000
## 718 5344.186 0.00000
## 719 5344.186 0.00000
## 720 5344.186 0.00000
## 721 4445.930 0.00000
## 722 4445.930 0.00000
## 723 4445.930 0.00000
## 724 4445.930 0.00000
## 725 4445.930 0.00000
## 726 4445.930 0.00000
## 727 4445.930 0.00000
## 728 4445.930 0.00000
## 729 4445.930 0.00000
## 730 4445.930 0.00000
## 731 4445.930 0.00000
## 732 4445.930 0.00000
## 733 4445.930 0.00000
## 734 4445.930 0.00000
## 735 4445.930 0.00000
## 736 4445.930 0.00000
## 737 4445.930 0.00000
## 738 4445.930 0.00000
## 739 4445.930 0.00000
## 740 4445.930 0.00000
## 741 4445.930 0.00000
## 742 4445.930 0.00000
## 743 4445.930 0.00000
## 744 4445.930 0.00000
## 745 2109.593 0.00000
## 746 2109.593 0.00000
## 747 2109.593 0.00000
## 748 2109.593 0.00000
## 749 2109.593 0.00000
## 750 2109.593 0.00000
## 751 2109.593 0.00000
## 752 2109.593 0.00000
## 753 2109.593 0.00000
## 754 2109.593 0.00000
## 755 2109.593 0.00000
## 756 2109.593 0.00000
## 757 2109.593 0.00000
## 758 2109.593 0.00000
## 759 2109.593 0.00000
## 760 2109.593 0.00000
## 761 2109.593 0.00000
## 762 2109.593 0.00000
## 763 2109.593 0.00000
## 764 2109.593 0.00000
## 765 2109.593 0.00000
## 766 2109.593 0.00000
## 767 2109.593 0.00000
## 768 2109.593 0.00000
## 769 1794.767 4812.20930
## 770 1794.767 4812.20930
## 771 1794.767 4812.20930
## 772 1794.767 4812.20930
## 773 1794.767 4812.20930
## 774 1794.767 4812.20930
## 775 1794.767 4812.20930
## 776 1794.767 4812.20930
## 777 1794.767 4812.20930
## 778 1794.767 4812.20930
## 779 1794.767 4812.20930
## 780 1794.767 4812.20930
## 781 1794.767 4812.20930
## 782 1794.767 4812.20930
## 783 1794.767 4812.20930
## 784 1794.767 4812.20930
## 785 1794.767 4812.20930
## 786 1794.767 4812.20930
## 787 1794.767 4812.20930
## 788 1794.767 4812.20930
## 789 1794.767 4812.20930
## 790 1794.767 4812.20930
## 791 1794.767 4812.20930
## 792 1794.767 4812.20930
## 793 8553.488 6587.79070
## 794 8553.488 6587.79070
## 795 8553.488 6587.79070
## 796 8553.488 6587.79070
## 797 8553.488 6587.79070
## 798 8553.488 6587.79070
## 799 8553.488 6587.79070
## 800 8553.488 6587.79070
## 801 8553.488 6587.79070
## 802 8553.488 6587.79070
## 803 8553.488 6587.79070
## 804 8553.488 6587.79070
## 805 8553.488 6587.79070
## 806 8553.488 6587.79070
## 807 8553.488 6587.79070
## 808 8553.488 6587.79070
## 809 8553.488 6587.79070
## 810 8553.488 6587.79070
## 811 8553.488 6587.79070
## 812 8553.488 6587.79070
## 813 8553.488 6587.79070
## 814 8553.488 6587.79070
## 815 8553.488 6587.79070
## 816 8553.488 6587.79070
## 817 10285.465 4200.00000
## 818 10285.465 4200.00000
## 819 10285.465 4200.00000
## 820 10285.465 4200.00000
## 821 10285.465 4200.00000
## 822 10285.465 4200.00000
## 823 10285.465 4200.00000
## 824 10285.465 4200.00000
## 825 10285.465 4200.00000
## 826 10285.465 4200.00000
## 827 10285.465 4200.00000
## 828 10285.465 4200.00000
## 829 10285.465 4200.00000
## 830 10285.465 4200.00000
## 831 10285.465 4200.00000
## 832 10285.465 4200.00000
## 833 10285.465 4200.00000
## 834 10285.465 4200.00000
## 835 10285.465 4200.00000
## 836 10285.465 4200.00000
## 837 10285.465 4200.00000
## 838 10285.465 4200.00000
## 839 10285.465 4200.00000
## 840 10285.465 4200.00000
## 841 8680.814 2202.90698
## 842 8680.814 2202.90698
## 843 8680.814 2202.90698
## 844 8680.814 2202.90698
## 845 8680.814 2202.90698
## 846 8680.814 2202.90698
## 847 8680.814 2202.90698
## 848 8680.814 2202.90698
## 849 8680.814 2202.90698
## 850 8680.814 2202.90698
## 851 8680.814 2202.90698
## 852 8680.814 2202.90698
## 853 8680.814 2202.90698
## 854 8680.814 2202.90698
## 855 8680.814 2202.90698
## 856 8680.814 2202.90698
## 857 8680.814 2202.90698
## 858 8680.814 2202.90698
## 859 8680.814 2202.90698
## 860 8680.814 2202.90698
## 861 8680.814 2202.90698
## 862 8680.814 2202.90698
## 863 8680.814 2202.90698
## 864 8680.814 2202.90698
## 865 13041.279 397.67442
## 866 13041.279 397.67442
## 867 13041.279 397.67442
## 868 13041.279 397.67442
## 869 13041.279 397.67442
## 870 13041.279 397.67442
## 871 13041.279 397.67442
## 872 13041.279 397.67442
## 873 13041.279 397.67442
## 874 13041.279 397.67442
## 875 13041.279 397.67442
## 876 13041.279 397.67442
## 877 13041.279 397.67442
## 878 13041.279 397.67442
## 879 13041.279 397.67442
## 880 13041.279 397.67442
## 881 13041.279 397.67442
## 882 13041.279 397.67442
## 883 13041.279 397.67442
## 884 13041.279 397.67442
## 885 13041.279 397.67442
## 886 13041.279 397.67442
## 887 13041.279 397.67442
## 888 13041.279 397.67442
## 889 8448.837 0.00000
## 890 8448.837 0.00000
## 891 8448.837 0.00000
## 892 8448.837 0.00000
## 893 8448.837 0.00000
## 894 8448.837 0.00000
## 895 8448.837 0.00000
## 896 8448.837 0.00000
## 897 8448.837 0.00000
## 898 8448.837 0.00000
## 899 8448.837 0.00000
## 900 8448.837 0.00000
## 901 8448.837 0.00000
## 902 8448.837 0.00000
## 903 8448.837 0.00000
## 904 8448.837 0.00000
## 905 8448.837 0.00000
## 906 8448.837 0.00000
## 907 8448.837 0.00000
## 908 8448.837 0.00000
## 909 8448.837 0.00000
## 910 8448.837 0.00000
## 911 8448.837 0.00000
## 912 8448.837 0.00000
## 913 9857.267 0.00000
## 914 9857.267 0.00000
## 915 9857.267 0.00000
## 916 9857.267 0.00000
## 917 9857.267 0.00000
## 918 9857.267 0.00000
## 919 9857.267 0.00000
## 920 9857.267 0.00000
## 921 9857.267 0.00000
## 922 9857.267 0.00000
## 923 9857.267 0.00000
## 924 9857.267 0.00000
## 925 9857.267 0.00000
## 926 9857.267 0.00000
## 927 9857.267 0.00000
## 928 9857.267 0.00000
## 929 9857.267 0.00000
## 930 9857.267 0.00000
## 931 9857.267 0.00000
## 932 9857.267 0.00000
## 933 9857.267 0.00000
## 934 9857.267 0.00000
## 935 9857.267 0.00000
## 936 9857.267 0.00000
## 937 16067.442 0.00000
## 938 16067.442 0.00000
## 939 16067.442 0.00000
## 940 16067.442 0.00000
## 941 16067.442 0.00000
## 942 16067.442 0.00000
## 943 16067.442 0.00000
## 944 16067.442 0.00000
## 945 16067.442 0.00000
## 946 16067.442 0.00000
## 947 16067.442 0.00000
## 948 16067.442 0.00000
## 949 16067.442 0.00000
## 950 16067.442 0.00000
## 951 16067.442 0.00000
## 952 16067.442 0.00000
## 953 16067.442 0.00000
## 954 16067.442 0.00000
## 955 16067.442 0.00000
## 956 16067.442 0.00000
## 957 16067.442 0.00000
## 958 16067.442 0.00000
## 959 16067.442 0.00000
## 960 16067.442 0.00000
## 961 1794.767 4812.20930
## 962 1794.767 4812.20930
## 963 1794.767 4812.20930
## 964 1794.767 4812.20930
## 965 1794.767 4812.20930
## 966 1794.767 4812.20930
## 967 1794.767 4812.20930
## 968 1794.767 4812.20930
## 969 1794.767 4812.20930
## 970 1794.767 4812.20930
## 971 1794.767 4812.20930
## 972 1794.767 4812.20930
## 973 1794.767 4812.20930
## 974 1794.767 4812.20930
## 975 1794.767 4812.20930
## 976 1794.767 4812.20930
## 977 1794.767 4812.20930
## 978 1794.767 4812.20930
## 979 1794.767 4812.20930
## 980 1794.767 4812.20930
## 981 1794.767 4812.20930
## 982 1794.767 4812.20930
## 983 1794.767 4812.20930
## 984 1794.767 4812.20930
## 985 7163.372 19306.39535
## 986 7163.372 19306.39535
## 987 7163.372 19306.39535
## 988 7163.372 19306.39535
## 989 7163.372 19306.39535
## 990 7163.372 19306.39535
## 991 7163.372 19306.39535
## 992 7163.372 19306.39535
## 993 7163.372 19306.39535
## 994 7163.372 19306.39535
## 995 7163.372 19306.39535
## 996 7163.372 19306.39535
## 997 7163.372 19306.39535
## 998 7163.372 19306.39535
## 999 7163.372 19306.39535
## 1000 7163.372 19306.39535
## 1001 7163.372 19306.39535
## 1002 7163.372 19306.39535
## 1003 7163.372 19306.39535
## 1004 7163.372 19306.39535
## 1005 7163.372 19306.39535
## 1006 7163.372 19306.39535
## 1007 7163.372 19306.39535
## 1008 7163.372 19306.39535
## 1009 15132.558 16220.93023
## 1010 15132.558 16220.93023
## 1011 15132.558 16220.93023
## 1012 15132.558 16220.93023
## 1013 15132.558 16220.93023
## 1014 15132.558 16220.93023
## 1015 15132.558 16220.93023
## 1016 15132.558 16220.93023
## 1017 15132.558 16220.93023
## 1018 15132.558 16220.93023
## 1019 15132.558 16220.93023
## 1020 15132.558 16220.93023
## 1021 15132.558 16220.93023
## 1022 15132.558 16220.93023
## 1023 15132.558 16220.93023
## 1024 15132.558 16220.93023
## 1025 15132.558 16220.93023
## 1026 15132.558 16220.93023
## 1027 15132.558 16220.93023
## 1028 15132.558 16220.93023
## 1029 15132.558 16220.93023
## 1030 15132.558 16220.93023
## 1031 15132.558 16220.93023
## 1032 15132.558 16220.93023
## 1033 8089.535 7716.27907
## 1034 8089.535 7716.27907
## 1035 8089.535 7716.27907
## 1036 8089.535 7716.27907
## 1037 8089.535 7716.27907
## 1038 8089.535 7716.27907
## 1039 8089.535 7716.27907
## 1040 8089.535 7716.27907
## 1041 8089.535 7716.27907
## 1042 8089.535 7716.27907
## 1043 8089.535 7716.27907
## 1044 8089.535 7716.27907
## 1045 8089.535 7716.27907
## 1046 8089.535 7716.27907
## 1047 8089.535 7716.27907
## 1048 8089.535 7716.27907
## 1049 8089.535 7716.27907
## 1050 8089.535 7716.27907
## 1051 8089.535 7716.27907
## 1052 8089.535 7716.27907
## 1053 8089.535 7716.27907
## 1054 8089.535 7716.27907
## 1055 8089.535 7716.27907
## 1056 8089.535 7716.27907
## 1057 9045.349 4128.48837
## 1058 9045.349 4128.48837
## 1059 9045.349 4128.48837
## 1060 9045.349 4128.48837
## 1061 9045.349 4128.48837
## 1062 9045.349 4128.48837
## 1063 9045.349 4128.48837
## 1064 9045.349 4128.48837
## 1065 9045.349 4128.48837
## 1066 9045.349 4128.48837
## 1067 9045.349 4128.48837
## 1068 9045.349 4128.48837
## 1069 9045.349 4128.48837
## 1070 9045.349 4128.48837
## 1071 9045.349 4128.48837
## 1072 9045.349 4128.48837
## 1073 9045.349 4128.48837
## 1074 9045.349 4128.48837
## 1075 9045.349 4128.48837
## 1076 9045.349 4128.48837
## 1077 9045.349 4128.48837
## 1078 9045.349 4128.48837
## 1079 9045.349 4128.48837
## 1080 9045.349 4128.48837
## 1081 9375.000 286.04651
## 1082 9375.000 286.04651
## 1083 9375.000 286.04651
## 1084 9375.000 286.04651
## 1085 9375.000 286.04651
## 1086 9375.000 286.04651
## 1087 9375.000 286.04651
## 1088 9375.000 286.04651
## 1089 9375.000 286.04651
## 1090 9375.000 286.04651
## 1091 9375.000 286.04651
## 1092 9375.000 286.04651
## 1093 9375.000 286.04651
## 1094 9375.000 286.04651
## 1095 9375.000 286.04651
## 1096 9375.000 286.04651
## 1097 9375.000 286.04651
## 1098 9375.000 286.04651
## 1099 9375.000 286.04651
## 1100 9375.000 286.04651
## 1101 9375.000 286.04651
## 1102 9375.000 286.04651
## 1103 9375.000 286.04651
## 1104 9375.000 286.04651
## 1105 15687.209 418.60465
## 1106 15687.209 418.60465
## 1107 15687.209 418.60465
## 1108 15687.209 418.60465
## 1109 15687.209 418.60465
## 1110 15687.209 418.60465
## 1111 15687.209 418.60465
## 1112 15687.209 418.60465
## 1113 15687.209 418.60465
## 1114 15687.209 418.60465
## 1115 15687.209 418.60465
## 1116 15687.209 418.60465
## 1117 15687.209 418.60465
## 1118 15687.209 418.60465
## 1119 15687.209 418.60465
## 1120 15687.209 418.60465
## 1121 15687.209 418.60465
## 1122 15687.209 418.60465
## 1123 15687.209 418.60465
## 1124 15687.209 418.60465
## 1125 15687.209 418.60465
## 1126 15687.209 418.60465
## 1127 15687.209 418.60465
## 1128 15687.209 418.60465
## 1129 15361.047 0.00000
## 1130 15361.047 0.00000
## 1131 15361.047 0.00000
## 1132 15361.047 0.00000
## 1133 15361.047 0.00000
## 1134 15361.047 0.00000
## 1135 15361.047 0.00000
## 1136 15361.047 0.00000
## 1137 15361.047 0.00000
## 1138 15361.047 0.00000
## 1139 15361.047 0.00000
## 1140 15361.047 0.00000
## 1141 15361.047 0.00000
## 1142 15361.047 0.00000
## 1143 15361.047 0.00000
## 1144 15361.047 0.00000
## 1145 15361.047 0.00000
## 1146 15361.047 0.00000
## 1147 15361.047 0.00000
## 1148 15361.047 0.00000
## 1149 15361.047 0.00000
## 1150 15361.047 0.00000
## 1151 15361.047 0.00000
## 1152 15361.047 0.00000
## 1153 1794.767 4812.20930
## 1154 1794.767 4812.20930
## 1155 1794.767 4812.20930
## 1156 1794.767 4812.20930
## 1157 1794.767 4812.20930
## 1158 1794.767 4812.20930
## 1159 1794.767 4812.20930
## 1160 1794.767 4812.20930
## 1161 1794.767 4812.20930
## 1162 1794.767 4812.20930
## 1163 1794.767 4812.20930
## 1164 1794.767 4812.20930
## 1165 1794.767 4812.20930
## 1166 1794.767 4812.20930
## 1167 1794.767 4812.20930
## 1168 1794.767 4812.20930
## 1169 1794.767 4812.20930
## 1170 1794.767 4812.20930
## 1171 1794.767 4812.20930
## 1172 1794.767 4812.20930
## 1173 1794.767 4812.20930
## 1174 1794.767 4812.20930
## 1175 1794.767 4812.20930
## 1176 1794.767 4812.20930
## 1177 8802.907 11405.23256
## 1178 8802.907 11405.23256
## 1179 8802.907 11405.23256
## 1180 8802.907 11405.23256
## 1181 8802.907 11405.23256
## 1182 8802.907 11405.23256
## 1183 8802.907 11405.23256
## 1184 8802.907 11405.23256
## 1185 8802.907 11405.23256
## 1186 8802.907 11405.23256
## 1187 8802.907 11405.23256
## 1188 8802.907 11405.23256
## 1189 8802.907 11405.23256
## 1190 8802.907 11405.23256
## 1191 8802.907 11405.23256
## 1192 8802.907 11405.23256
## 1193 8802.907 11405.23256
## 1194 8802.907 11405.23256
## 1195 8802.907 11405.23256
## 1196 8802.907 11405.23256
## 1197 8802.907 11405.23256
## 1198 8802.907 11405.23256
## 1199 8802.907 11405.23256
## 1200 8802.907 11405.23256
## 1201 16022.093 5023.25581
## 1202 16022.093 5023.25581
## 1203 16022.093 5023.25581
## 1204 16022.093 5023.25581
## 1205 16022.093 5023.25581
## 1206 16022.093 5023.25581
## 1207 16022.093 5023.25581
## 1208 16022.093 5023.25581
## 1209 16022.093 5023.25581
## 1210 16022.093 5023.25581
## 1211 16022.093 5023.25581
## 1212 16022.093 5023.25581
## 1213 16022.093 5023.25581
## 1214 16022.093 5023.25581
## 1215 16022.093 5023.25581
## 1216 16022.093 5023.25581
## 1217 16022.093 5023.25581
## 1218 16022.093 5023.25581
## 1219 16022.093 5023.25581
## 1220 16022.093 5023.25581
## 1221 16022.093 5023.25581
## 1222 16022.093 5023.25581
## 1223 16022.093 5023.25581
## 1224 16022.093 5023.25581
## 1225 16409.302 4428.48837
## 1226 16409.302 4428.48837
## 1227 16409.302 4428.48837
## 1228 16409.302 4428.48837
## 1229 16409.302 4428.48837
## 1230 16409.302 4428.48837
## 1231 16409.302 4428.48837
## 1232 16409.302 4428.48837
## 1233 16409.302 4428.48837
## 1234 16409.302 4428.48837
## 1235 16409.302 4428.48837
## 1236 16409.302 4428.48837
## 1237 16409.302 4428.48837
## 1238 16409.302 4428.48837
## 1239 16409.302 4428.48837
## 1240 16409.302 4428.48837
## 1241 16409.302 4428.48837
## 1242 16409.302 4428.48837
## 1243 16409.302 4428.48837
## 1244 16409.302 4428.48837
## 1245 16409.302 4428.48837
## 1246 16409.302 4428.48837
## 1247 16409.302 4428.48837
## 1248 16409.302 4428.48837
## 1249 12725.581 613.95349
## 1250 12725.581 613.95349
## 1251 12725.581 613.95349
## 1252 12725.581 613.95349
## 1253 12725.581 613.95349
## 1254 12725.581 613.95349
## 1255 12725.581 613.95349
## 1256 12725.581 613.95349
## 1257 12725.581 613.95349
## 1258 12725.581 613.95349
## 1259 12725.581 613.95349
## 1260 12725.581 613.95349
## 1261 12725.581 613.95349
## 1262 12725.581 613.95349
## 1263 12725.581 613.95349
## 1264 12725.581 613.95349
## 1265 12725.581 613.95349
## 1266 12725.581 613.95349
## 1267 12725.581 613.95349
## 1268 12725.581 613.95349
## 1269 12725.581 613.95349
## 1270 12725.581 613.95349
## 1271 12725.581 613.95349
## 1272 12725.581 613.95349
## 1273 7805.233 1123.25581
## 1274 7805.233 1123.25581
## 1275 7805.233 1123.25581
## 1276 7805.233 1123.25581
## 1277 7805.233 1123.25581
## 1278 7805.233 1123.25581
## 1279 7805.233 1123.25581
## 1280 7805.233 1123.25581
## 1281 7805.233 1123.25581
## 1282 7805.233 1123.25581
## 1283 7805.233 1123.25581
## 1284 7805.233 1123.25581
## 1285 7805.233 1123.25581
## 1286 7805.233 1123.25581
## 1287 7805.233 1123.25581
## 1288 7805.233 1123.25581
## 1289 7805.233 1123.25581
## 1290 7805.233 1123.25581
## 1291 7805.233 1123.25581
## 1292 7805.233 1123.25581
## 1293 7805.233 1123.25581
## 1294 7805.233 1123.25581
## 1295 7805.233 1123.25581
## 1296 7805.233 1123.25581
## 1297 12434.302 0.00000
## 1298 12434.302 0.00000
## 1299 12434.302 0.00000
## 1300 12434.302 0.00000
## 1301 12434.302 0.00000
## 1302 12434.302 0.00000
## 1303 12434.302 0.00000
## 1304 12434.302 0.00000
## 1305 12434.302 0.00000
## 1306 12434.302 0.00000
## 1307 12434.302 0.00000
## 1308 12434.302 0.00000
## 1309 12434.302 0.00000
## 1310 12434.302 0.00000
## 1311 12434.302 0.00000
## 1312 12434.302 0.00000
## 1313 12434.302 0.00000
## 1314 12434.302 0.00000
## 1315 12434.302 0.00000
## 1316 12434.302 0.00000
## 1317 12434.302 0.00000
## 1318 12434.302 0.00000
## 1319 12434.302 0.00000
## 1320 12434.302 0.00000
## 1321 10377.035 0.00000
## 1322 10377.035 0.00000
## 1323 10377.035 0.00000
## 1324 10377.035 0.00000
## 1325 10377.035 0.00000
## 1326 10377.035 0.00000
## 1327 10377.035 0.00000
## 1328 10377.035 0.00000
## 1329 10377.035 0.00000
## 1330 10377.035 0.00000
## 1331 10377.035 0.00000
## 1332 10377.035 0.00000
## 1333 10377.035 0.00000
## 1334 10377.035 0.00000
## 1335 10377.035 0.00000
## 1336 10377.035 0.00000
## 1337 10377.035 0.00000
## 1338 10377.035 0.00000
## 1339 10377.035 0.00000
## 1340 10377.035 0.00000
## 1341 10377.035 0.00000
## 1342 10377.035 0.00000
## 1343 10377.035 0.00000
## 1344 10377.035 0.00000
## 1345 1794.767 4812.20930
## 1346 1794.767 4812.20930
## 1347 1794.767 4812.20930
## 1348 1794.767 4812.20930
## 1349 1794.767 4812.20930
## 1350 1794.767 4812.20930
## 1351 1794.767 4812.20930
## 1352 1794.767 4812.20930
## 1353 1794.767 4812.20930
## 1354 1794.767 4812.20930
## 1355 1794.767 4812.20930
## 1356 1794.767 4812.20930
## 1357 1794.767 4812.20930
## 1358 1794.767 4812.20930
## 1359 1794.767 4812.20930
## 1360 1794.767 4812.20930
## 1361 1794.767 4812.20930
## 1362 1794.767 4812.20930
## 1363 1794.767 4812.20930
## 1364 1794.767 4812.20930
## 1365 1794.767 4812.20930
## 1366 1794.767 4812.20930
## 1367 1794.767 4812.20930
## 1368 1794.767 4812.20930
## 1369 7451.163 16236.62791
## 1370 7451.163 16236.62791
## 1371 7451.163 16236.62791
## 1372 7451.163 16236.62791
## 1373 7451.163 16236.62791
## 1374 7451.163 16236.62791
## 1375 7451.163 16236.62791
## 1376 7451.163 16236.62791
## 1377 7451.163 16236.62791
## 1378 7451.163 16236.62791
## 1379 7451.163 16236.62791
## 1380 7451.163 16236.62791
## 1381 7451.163 16236.62791
## 1382 7451.163 16236.62791
## 1383 7451.163 16236.62791
## 1384 7451.163 16236.62791
## 1385 7451.163 16236.62791
## 1386 7451.163 16236.62791
## 1387 7451.163 16236.62791
## 1388 7451.163 16236.62791
## 1389 7451.163 16236.62791
## 1390 7451.163 16236.62791
## 1391 7451.163 16236.62791
## 1392 7451.163 16236.62791
## 1393 16135.465 5886.62791
## 1394 16135.465 5886.62791
## 1395 16135.465 5886.62791
## 1396 16135.465 5886.62791
## 1397 16135.465 5886.62791
## 1398 16135.465 5886.62791
## 1399 16135.465 5886.62791
## 1400 16135.465 5886.62791
## 1401 16135.465 5886.62791
## 1402 16135.465 5886.62791
## 1403 16135.465 5886.62791
## 1404 16135.465 5886.62791
## 1405 16135.465 5886.62791
## 1406 16135.465 5886.62791
## 1407 16135.465 5886.62791
## 1408 16135.465 5886.62791
## 1409 16135.465 5886.62791
## 1410 16135.465 5886.62791
## 1411 16135.465 5886.62791
## 1412 16135.465 5886.62791
## 1413 16135.465 5886.62791
## 1414 16135.465 5886.62791
## 1415 16135.465 5886.62791
## 1416 16135.465 5886.62791
## 1417 8307.558 4803.48837
## 1418 8307.558 4803.48837
## 1419 8307.558 4803.48837
## 1420 8307.558 4803.48837
## 1421 8307.558 4803.48837
## 1422 8307.558 4803.48837
## 1423 8307.558 4803.48837
## 1424 8307.558 4803.48837
## 1425 8307.558 4803.48837
## 1426 8307.558 4803.48837
## 1427 8307.558 4803.48837
## 1428 8307.558 4803.48837
## 1429 8307.558 4803.48837
## 1430 8307.558 4803.48837
## 1431 8307.558 4803.48837
## 1432 8307.558 4803.48837
## 1433 8307.558 4803.48837
## 1434 8307.558 4803.48837
## 1435 8307.558 4803.48837
## 1436 8307.558 4803.48837
## 1437 8307.558 4803.48837
## 1438 8307.558 4803.48837
## 1439 8307.558 4803.48837
## 1440 8307.558 4803.48837
## 1441 10449.419 613.95349
## 1442 10449.419 613.95349
## 1443 10449.419 613.95349
## 1444 10449.419 613.95349
## 1445 10449.419 613.95349
## 1446 10449.419 613.95349
## 1447 10449.419 613.95349
## 1448 10449.419 613.95349
## 1449 10449.419 613.95349
## 1450 10449.419 613.95349
## 1451 10449.419 613.95349
## 1452 10449.419 613.95349
## 1453 10449.419 613.95349
## 1454 10449.419 613.95349
## 1455 10449.419 613.95349
## 1456 10449.419 613.95349
## 1457 10449.419 613.95349
## 1458 10449.419 613.95349
## 1459 10449.419 613.95349
## 1460 10449.419 613.95349
## 1461 10449.419 613.95349
## 1462 10449.419 613.95349
## 1463 10449.419 613.95349
## 1464 10449.419 613.95349
## 1465 3279.070 286.04651
## 1466 3279.070 286.04651
## 1467 3279.070 286.04651
## 1468 3279.070 286.04651
## 1469 3279.070 286.04651
## 1470 3279.070 286.04651
## 1471 3279.070 286.04651
## 1472 3279.070 286.04651
## 1473 3279.070 286.04651
## 1474 3279.070 286.04651
## 1475 3279.070 286.04651
## 1476 3279.070 286.04651
## 1477 3279.070 286.04651
## 1478 3279.070 286.04651
## 1479 3279.070 286.04651
## 1480 3279.070 286.04651
## 1481 3279.070 286.04651
## 1482 3279.070 286.04651
## 1483 3279.070 286.04651
## 1484 3279.070 286.04651
## 1485 3279.070 286.04651
## 1486 3279.070 286.04651
## 1487 3279.070 286.04651
## 1488 3279.070 286.04651
## 1489 13829.651 327.03488
## 1490 13829.651 327.03488
## 1491 13829.651 327.03488
## 1492 13829.651 327.03488
## 1493 13829.651 327.03488
## 1494 13829.651 327.03488
## 1495 13829.651 327.03488
## 1496 13829.651 327.03488
## 1497 13829.651 327.03488
## 1498 13829.651 327.03488
## 1499 13829.651 327.03488
## 1500 13829.651 327.03488
## 1501 13829.651 327.03488
## 1502 13829.651 327.03488
## 1503 13829.651 327.03488
## 1504 13829.651 327.03488
## 1505 13829.651 327.03488
## 1506 13829.651 327.03488
## 1507 13829.651 327.03488
## 1508 13829.651 327.03488
## 1509 13829.651 327.03488
## 1510 13829.651 327.03488
## 1511 13829.651 327.03488
## 1512 13829.651 327.03488
## 1513 19895.930 0.00000
## 1514 19895.930 0.00000
## 1515 19895.930 0.00000
## 1516 19895.930 0.00000
## 1517 19895.930 0.00000
## 1518 19895.930 0.00000
## 1519 19895.930 0.00000
## 1520 19895.930 0.00000
## 1521 19895.930 0.00000
## 1522 19895.930 0.00000
## 1523 19895.930 0.00000
## 1524 19895.930 0.00000
## 1525 19895.930 0.00000
## 1526 19895.930 0.00000
## 1527 19895.930 0.00000
## 1528 19895.930 0.00000
## 1529 19895.930 0.00000
## 1530 19895.930 0.00000
## 1531 19895.930 0.00000
## 1532 19895.930 0.00000
## 1533 19895.930 0.00000
## 1534 19895.930 0.00000
## 1535 19895.930 0.00000
## 1536 19895.930 0.00000
## 1537 1794.767 4812.20930
## 1538 1794.767 4812.20930
## 1539 1794.767 4812.20930
## 1540 1794.767 4812.20930
## 1541 1794.767 4812.20930
## 1542 1794.767 4812.20930
## 1543 1794.767 4812.20930
## 1544 1794.767 4812.20930
## 1545 1794.767 4812.20930
## 1546 1794.767 4812.20930
## 1547 1794.767 4812.20930
## 1548 1794.767 4812.20930
## 1549 1794.767 4812.20930
## 1550 1794.767 4812.20930
## 1551 1794.767 4812.20930
## 1552 1794.767 4812.20930
## 1553 1794.767 4812.20930
## 1554 1794.767 4812.20930
## 1555 1794.767 4812.20930
## 1556 1794.767 4812.20930
## 1557 1794.767 4812.20930
## 1558 1794.767 4812.20930
## 1559 1794.767 4812.20930
## 1560 1794.767 4812.20930
## 1561 9334.884 10568.02326
## 1562 9334.884 10568.02326
## 1563 9334.884 10568.02326
## 1564 9334.884 10568.02326
## 1565 9334.884 10568.02326
## 1566 9334.884 10568.02326
## 1567 9334.884 10568.02326
## 1568 9334.884 10568.02326
## 1569 9334.884 10568.02326
## 1570 9334.884 10568.02326
## 1571 9334.884 10568.02326
## 1572 9334.884 10568.02326
## 1573 9334.884 10568.02326
## 1574 9334.884 10568.02326
## 1575 9334.884 10568.02326
## 1576 9334.884 10568.02326
## 1577 9334.884 10568.02326
## 1578 9334.884 10568.02326
## 1579 9334.884 10568.02326
## 1580 9334.884 10568.02326
## 1581 9334.884 10568.02326
## 1582 9334.884 10568.02326
## 1583 9334.884 10568.02326
## 1584 9334.884 10568.02326
## 1585 20522.093 1936.04651
## 1586 20522.093 1936.04651
## 1587 20522.093 1936.04651
## 1588 20522.093 1936.04651
## 1589 20522.093 1936.04651
## 1590 20522.093 1936.04651
## 1591 20522.093 1936.04651
## 1592 20522.093 1936.04651
## 1593 20522.093 1936.04651
## 1594 20522.093 1936.04651
## 1595 20522.093 1936.04651
## 1596 20522.093 1936.04651
## 1597 20522.093 1936.04651
## 1598 20522.093 1936.04651
## 1599 20522.093 1936.04651
## 1600 20522.093 1936.04651
## 1601 20522.093 1936.04651
## 1602 20522.093 1936.04651
## 1603 20522.093 1936.04651
## 1604 20522.093 1936.04651
## 1605 20522.093 1936.04651
## 1606 20522.093 1936.04651
## 1607 20522.093 1936.04651
## 1608 20522.093 1936.04651
## 1609 11761.047 2256.97674
## 1610 11761.047 2256.97674
## 1611 11761.047 2256.97674
## 1612 11761.047 2256.97674
## 1613 11761.047 2256.97674
## 1614 11761.047 2256.97674
## 1615 11761.047 2256.97674
## 1616 11761.047 2256.97674
## 1617 11761.047 2256.97674
## 1618 11761.047 2256.97674
## 1619 11761.047 2256.97674
## 1620 11761.047 2256.97674
## 1621 11761.047 2256.97674
## 1622 11761.047 2256.97674
## 1623 11761.047 2256.97674
## 1624 11761.047 2256.97674
## 1625 11761.047 2256.97674
## 1626 11761.047 2256.97674
## 1627 11761.047 2256.97674
## 1628 11761.047 2256.97674
## 1629 11761.047 2256.97674
## 1630 11761.047 2256.97674
## 1631 11761.047 2256.97674
## 1632 11761.047 2256.97674
## 1633 10379.651 613.95349
## 1634 10379.651 613.95349
## 1635 10379.651 613.95349
## 1636 10379.651 613.95349
## 1637 10379.651 613.95349
## 1638 10379.651 613.95349
## 1639 10379.651 613.95349
## 1640 10379.651 613.95349
## 1641 10379.651 613.95349
## 1642 10379.651 613.95349
## 1643 10379.651 613.95349
## 1644 10379.651 613.95349
## 1645 10379.651 613.95349
## 1646 10379.651 613.95349
## 1647 10379.651 613.95349
## 1648 10379.651 613.95349
## 1649 10379.651 613.95349
## 1650 10379.651 613.95349
## 1651 10379.651 613.95349
## 1652 10379.651 613.95349
## 1653 10379.651 613.95349
## 1654 10379.651 613.95349
## 1655 10379.651 613.95349
## 1656 10379.651 613.95349
## 1657 4901.163 286.04651
## 1658 4901.163 286.04651
## 1659 4901.163 286.04651
## 1660 4901.163 286.04651
## 1661 4901.163 286.04651
## 1662 4901.163 286.04651
## 1663 4901.163 286.04651
## 1664 4901.163 286.04651
## 1665 4901.163 286.04651
## 1666 4901.163 286.04651
## 1667 4901.163 286.04651
## 1668 4901.163 286.04651
## 1669 4901.163 286.04651
## 1670 4901.163 286.04651
## 1671 4901.163 286.04651
## 1672 4901.163 286.04651
## 1673 4901.163 286.04651
## 1674 4901.163 286.04651
## 1675 4901.163 286.04651
## 1676 4901.163 286.04651
## 1677 4901.163 286.04651
## 1678 4901.163 286.04651
## 1679 4901.163 286.04651
## 1680 4901.163 286.04651
## 1681 4332.558 0.00000
## 1682 4332.558 0.00000
## 1683 4332.558 0.00000
## 1684 4332.558 0.00000
## 1685 4332.558 0.00000
## 1686 4332.558 0.00000
## 1687 4332.558 0.00000
## 1688 4332.558 0.00000
## 1689 4332.558 0.00000
## 1690 4332.558 0.00000
## 1691 4332.558 0.00000
## 1692 4332.558 0.00000
## 1693 4332.558 0.00000
## 1694 4332.558 0.00000
## 1695 4332.558 0.00000
## 1696 4332.558 0.00000
## 1697 4332.558 0.00000
## 1698 4332.558 0.00000
## 1699 4332.558 0.00000
## 1700 4332.558 0.00000
## 1701 4332.558 0.00000
## 1702 4332.558 0.00000
## 1703 4332.558 0.00000
## 1704 4332.558 0.00000
## 1705 2048.547 0.00000
## 1706 2048.547 0.00000
## 1707 2048.547 0.00000
## 1708 2048.547 0.00000
## 1709 2048.547 0.00000
## 1710 2048.547 0.00000
## 1711 2048.547 0.00000
## 1712 2048.547 0.00000
## 1713 2048.547 0.00000
## 1714 2048.547 0.00000
## 1715 2048.547 0.00000
## 1716 2048.547 0.00000
## 1717 2048.547 0.00000
## 1718 2048.547 0.00000
## 1719 2048.547 0.00000
## 1720 2048.547 0.00000
## 1721 2048.547 0.00000
## 1722 2048.547 0.00000
## 1723 2048.547 0.00000
## 1724 2048.547 0.00000
## 1725 2048.547 0.00000
## 1726 2048.547 0.00000
## 1727 2048.547 0.00000
## 1728 2048.547 0.00000
## 1729 1794.767 4812.20930
## 1730 1794.767 4812.20930
## 1731 1794.767 4812.20930
## 1732 1794.767 4812.20930
## 1733 1794.767 4812.20930
## 1734 1794.767 4812.20930
## 1735 1794.767 4812.20930
## 1736 1794.767 4812.20930
## 1737 1794.767 4812.20930
## 1738 1794.767 4812.20930
## 1739 1794.767 4812.20930
## 1740 1794.767 4812.20930
## 1741 1794.767 4812.20930
## 1742 1794.767 4812.20930
## 1743 1794.767 4812.20930
## 1744 1794.767 4812.20930
## 1745 1794.767 4812.20930
## 1746 1794.767 4812.20930
## 1747 1794.767 4812.20930
## 1748 1794.767 4812.20930
## 1749 1794.767 4812.20930
## 1750 1794.767 4812.20930
## 1751 1794.767 4812.20930
## 1752 1794.767 4812.20930
## 1753 7660.465 5588.37209
## 1754 7660.465 5588.37209
## 1755 7660.465 5588.37209
## 1756 7660.465 5588.37209
## 1757 7660.465 5588.37209
## 1758 7660.465 5588.37209
## 1759 7660.465 5588.37209
## 1760 7660.465 5588.37209
## 1761 7660.465 5588.37209
## 1762 7660.465 5588.37209
## 1763 7660.465 5588.37209
## 1764 7660.465 5588.37209
## 1765 7660.465 5588.37209
## 1766 7660.465 5588.37209
## 1767 7660.465 5588.37209
## 1768 7660.465 5588.37209
## 1769 7660.465 5588.37209
## 1770 7660.465 5588.37209
## 1771 7660.465 5588.37209
## 1772 7660.465 5588.37209
## 1773 7660.465 5588.37209
## 1774 7660.465 5588.37209
## 1775 7660.465 5588.37209
## 1776 7660.465 5588.37209
## 1777 13658.721 4063.95349
## 1778 13658.721 4063.95349
## 1779 13658.721 4063.95349
## 1780 13658.721 4063.95349
## 1781 13658.721 4063.95349
## 1782 13658.721 4063.95349
## 1783 13658.721 4063.95349
## 1784 13658.721 4063.95349
## 1785 13658.721 4063.95349
## 1786 13658.721 4063.95349
## 1787 13658.721 4063.95349
## 1788 13658.721 4063.95349
## 1789 13658.721 4063.95349
## 1790 13658.721 4063.95349
## 1791 13658.721 4063.95349
## 1792 13658.721 4063.95349
## 1793 13658.721 4063.95349
## 1794 13658.721 4063.95349
## 1795 13658.721 4063.95349
## 1796 13658.721 4063.95349
## 1797 13658.721 4063.95349
## 1798 13658.721 4063.95349
## 1799 13658.721 4063.95349
## 1800 13658.721 4063.95349
## 1801 10217.442 2945.93023
## 1802 10217.442 2945.93023
## 1803 10217.442 2945.93023
## 1804 10217.442 2945.93023
## 1805 10217.442 2945.93023
## 1806 10217.442 2945.93023
## 1807 10217.442 2945.93023
## 1808 10217.442 2945.93023
## 1809 10217.442 2945.93023
## 1810 10217.442 2945.93023
## 1811 10217.442 2945.93023
## 1812 10217.442 2945.93023
## 1813 10217.442 2945.93023
## 1814 10217.442 2945.93023
## 1815 10217.442 2945.93023
## 1816 10217.442 2945.93023
## 1817 10217.442 2945.93023
## 1818 10217.442 2945.93023
## 1819 10217.442 2945.93023
## 1820 10217.442 2945.93023
## 1821 10217.442 2945.93023
## 1822 10217.442 2945.93023
## 1823 10217.442 2945.93023
## 1824 10217.442 2945.93023
## 1825 12760.465 613.95349
## 1826 12760.465 613.95349
## 1827 12760.465 613.95349
## 1828 12760.465 613.95349
## 1829 12760.465 613.95349
## 1830 12760.465 613.95349
## 1831 12760.465 613.95349
## 1832 12760.465 613.95349
## 1833 12760.465 613.95349
## 1834 12760.465 613.95349
## 1835 12760.465 613.95349
## 1836 12760.465 613.95349
## 1837 12760.465 613.95349
## 1838 12760.465 613.95349
## 1839 12760.465 613.95349
## 1840 12760.465 613.95349
## 1841 12760.465 613.95349
## 1842 12760.465 613.95349
## 1843 12760.465 613.95349
## 1844 12760.465 613.95349
## 1845 12760.465 613.95349
## 1846 12760.465 613.95349
## 1847 12760.465 613.95349
## 1848 12760.465 613.95349
## 1849 8005.814 286.04651
## 1850 8005.814 286.04651
## 1851 8005.814 286.04651
## 1852 8005.814 286.04651
## 1853 8005.814 286.04651
## 1854 8005.814 286.04651
## 1855 8005.814 286.04651
## 1856 8005.814 286.04651
## 1857 8005.814 286.04651
## 1858 8005.814 286.04651
## 1859 8005.814 286.04651
## 1860 8005.814 286.04651
## 1861 8005.814 286.04651
## 1862 8005.814 286.04651
## 1863 8005.814 286.04651
## 1864 8005.814 286.04651
## 1865 8005.814 286.04651
## 1866 8005.814 286.04651
## 1867 8005.814 286.04651
## 1868 8005.814 286.04651
## 1869 8005.814 286.04651
## 1870 8005.814 286.04651
## 1871 8005.814 286.04651
## 1872 8005.814 286.04651
## 1873 9743.895 0.00000
## 1874 9743.895 0.00000
## 1875 9743.895 0.00000
## 1876 9743.895 0.00000
## 1877 9743.895 0.00000
## 1878 9743.895 0.00000
## 1879 9743.895 0.00000
## 1880 9743.895 0.00000
## 1881 9743.895 0.00000
## 1882 9743.895 0.00000
## 1883 9743.895 0.00000
## 1884 9743.895 0.00000
## 1885 9743.895 0.00000
## 1886 9743.895 0.00000
## 1887 9743.895 0.00000
## 1888 9743.895 0.00000
## 1889 9743.895 0.00000
## 1890 9743.895 0.00000
## 1891 9743.895 0.00000
## 1892 9743.895 0.00000
## 1893 9743.895 0.00000
## 1894 9743.895 0.00000
## 1895 9743.895 0.00000
## 1896 9743.895 0.00000
## 1897 16006.395 0.00000
## 1898 16006.395 0.00000
## 1899 16006.395 0.00000
## 1900 16006.395 0.00000
## 1901 16006.395 0.00000
## 1902 16006.395 0.00000
## 1903 16006.395 0.00000
## 1904 16006.395 0.00000
## 1905 16006.395 0.00000
## 1906 16006.395 0.00000
## 1907 16006.395 0.00000
## 1908 16006.395 0.00000
## 1909 16006.395 0.00000
## 1910 16006.395 0.00000
## 1911 16006.395 0.00000
## 1912 16006.395 0.00000
## 1913 16006.395 0.00000
## 1914 16006.395 0.00000
## 1915 16006.395 0.00000
## 1916 16006.395 0.00000
## 1917 16006.395 0.00000
## 1918 16006.395 0.00000
## 1919 16006.395 0.00000
## 1920 16006.395 0.00000
## 1921 1794.767 4812.20930
## 1922 1794.767 4812.20930
## 1923 1794.767 4812.20930
## 1924 1794.767 4812.20930
## 1925 1794.767 4812.20930
## 1926 1794.767 4812.20930
## 1927 1794.767 4812.20930
## 1928 1794.767 4812.20930
## 1929 1794.767 4812.20930
## 1930 1794.767 4812.20930
## 1931 1794.767 4812.20930
## 1932 1794.767 4812.20930
## 1933 1794.767 4812.20930
## 1934 1794.767 4812.20930
## 1935 1794.767 4812.20930
## 1936 1794.767 4812.20930
## 1937 1794.767 4812.20930
## 1938 1794.767 4812.20930
## 1939 1794.767 4812.20930
## 1940 1794.767 4812.20930
## 1941 1794.767 4812.20930
## 1942 1794.767 4812.20930
## 1943 1794.767 4812.20930
## 1944 1794.767 4812.20930
## 1945 7573.256 19557.55814
## 1946 7573.256 19557.55814
## 1947 7573.256 19557.55814
## 1948 7573.256 19557.55814
## 1949 7573.256 19557.55814
## 1950 7573.256 19557.55814
## 1951 7573.256 19557.55814
## 1952 7573.256 19557.55814
## 1953 7573.256 19557.55814
## 1954 7573.256 19557.55814
## 1955 7573.256 19557.55814
## 1956 7573.256 19557.55814
## 1957 7573.256 19557.55814
## 1958 7573.256 19557.55814
## 1959 7573.256 19557.55814
## 1960 7573.256 19557.55814
## 1961 7573.256 19557.55814
## 1962 7573.256 19557.55814
## 1963 7573.256 19557.55814
## 1964 7573.256 19557.55814
## 1965 7573.256 19557.55814
## 1966 7573.256 19557.55814
## 1967 7573.256 19557.55814
## 1968 7573.256 19557.55814
## 1969 11834.302 16130.23256
## 1970 11834.302 16130.23256
## 1971 11834.302 16130.23256
## 1972 11834.302 16130.23256
## 1973 11834.302 16130.23256
## 1974 11834.302 16130.23256
## 1975 11834.302 16130.23256
## 1976 11834.302 16130.23256
## 1977 11834.302 16130.23256
## 1978 11834.302 16130.23256
## 1979 11834.302 16130.23256
## 1980 11834.302 16130.23256
## 1981 11834.302 16130.23256
## 1982 11834.302 16130.23256
## 1983 11834.302 16130.23256
## 1984 11834.302 16130.23256
## 1985 11834.302 16130.23256
## 1986 11834.302 16130.23256
## 1987 11834.302 16130.23256
## 1988 11834.302 16130.23256
## 1989 11834.302 16130.23256
## 1990 11834.302 16130.23256
## 1991 11834.302 16130.23256
## 1992 11834.302 16130.23256
## 1993 8497.674 6549.41860
## 1994 8497.674 6549.41860
## 1995 8497.674 6549.41860
## 1996 8497.674 6549.41860
## 1997 8497.674 6549.41860
## 1998 8497.674 6549.41860
## 1999 8497.674 6549.41860
## 2000 8497.674 6549.41860
## 2001 8497.674 6549.41860
## 2002 8497.674 6549.41860
## 2003 8497.674 6549.41860
## 2004 8497.674 6549.41860
## 2005 8497.674 6549.41860
## 2006 8497.674 6549.41860
## 2007 8497.674 6549.41860
## 2008 8497.674 6549.41860
## 2009 8497.674 6549.41860
## 2010 8497.674 6549.41860
## 2011 8497.674 6549.41860
## 2012 8497.674 6549.41860
## 2013 8497.674 6549.41860
## 2014 8497.674 6549.41860
## 2015 8497.674 6549.41860
## 2016 8497.674 6549.41860
## 2017 9950.581 3514.53488
## 2018 9950.581 3514.53488
## 2019 9950.581 3514.53488
## 2020 9950.581 3514.53488
## 2021 9950.581 3514.53488
## 2022 9950.581 3514.53488
## 2023 9950.581 3514.53488
## 2024 9950.581 3514.53488
## 2025 9950.581 3514.53488
## 2026 9950.581 3514.53488
## 2027 9950.581 3514.53488
## 2028 9950.581 3514.53488
## 2029 9950.581 3514.53488
## 2030 9950.581 3514.53488
## 2031 9950.581 3514.53488
## 2032 9950.581 3514.53488
## 2033 9950.581 3514.53488
## 2034 9950.581 3514.53488
## 2035 9950.581 3514.53488
## 2036 9950.581 3514.53488
## 2037 9950.581 3514.53488
## 2038 9950.581 3514.53488
## 2039 9950.581 3514.53488
## 2040 9950.581 3514.53488
## 2041 9680.233 94.18605
## 2042 9680.233 94.18605
## 2043 9680.233 94.18605
## 2044 9680.233 94.18605
## 2045 9680.233 94.18605
## 2046 9680.233 94.18605
## 2047 9680.233 94.18605
## 2048 9680.233 94.18605
## 2049 9680.233 94.18605
## 2050 9680.233 94.18605
## 2051 9680.233 94.18605
## 2052 9680.233 94.18605
## 2053 9680.233 94.18605
## 2054 9680.233 94.18605
## 2055 9680.233 94.18605
## 2056 9680.233 94.18605
## 2057 9680.233 94.18605
## 2058 9680.233 94.18605
## 2059 9680.233 94.18605
## 2060 9680.233 94.18605
## 2061 9680.233 94.18605
## 2062 9680.233 94.18605
## 2063 9680.233 94.18605
## 2064 9680.233 94.18605
## 2065 15496.221 418.60465
## 2066 15496.221 418.60465
## 2067 15496.221 418.60465
## 2068 15496.221 418.60465
## 2069 15496.221 418.60465
## 2070 15496.221 418.60465
## 2071 15496.221 418.60465
## 2072 15496.221 418.60465
## 2073 15496.221 418.60465
## 2074 15496.221 418.60465
## 2075 15496.221 418.60465
## 2076 15496.221 418.60465
## 2077 15496.221 418.60465
## 2078 15496.221 418.60465
## 2079 15496.221 418.60465
## 2080 15496.221 418.60465
## 2081 15496.221 418.60465
## 2082 15496.221 418.60465
## 2083 15496.221 418.60465
## 2084 15496.221 418.60465
## 2085 15496.221 418.60465
## 2086 15496.221 418.60465
## 2087 15496.221 418.60465
## 2088 15496.221 418.60465
## 2089 15620.930 109.01163
## 2090 15620.930 109.01163
## 2091 15620.930 109.01163
## 2092 15620.930 109.01163
## 2093 15620.930 109.01163
## 2094 15620.930 109.01163
## 2095 15620.930 109.01163
## 2096 15620.930 109.01163
## 2097 15620.930 109.01163
## 2098 15620.930 109.01163
## 2099 15620.930 109.01163
## 2100 15620.930 109.01163
## 2101 15620.930 109.01163
## 2102 15620.930 109.01163
## 2103 15620.930 109.01163
## 2104 15620.930 109.01163
## 2105 15620.930 109.01163
## 2106 15620.930 109.01163
## 2107 15620.930 109.01163
## 2108 15620.930 109.01163
## 2109 15620.930 109.01163
## 2110 15620.930 109.01163
## 2111 15620.930 109.01163
## 2112 15620.930 109.01163
## 2113 1794.767 4812.20930
## 2114 1794.767 4812.20930
## 2115 1794.767 4812.20930
## 2116 1794.767 4812.20930
## 2117 1794.767 4812.20930
## 2118 1794.767 4812.20930
## 2119 1794.767 4812.20930
## 2120 1794.767 4812.20930
## 2121 1794.767 4812.20930
## 2122 1794.767 4812.20930
## 2123 1794.767 4812.20930
## 2124 1794.767 4812.20930
## 2125 1794.767 4812.20930
## 2126 1794.767 4812.20930
## 2127 1794.767 4812.20930
## 2128 1794.767 4812.20930
## 2129 1794.767 4812.20930
## 2130 1794.767 4812.20930
## 2131 1794.767 4812.20930
## 2132 1794.767 4812.20930
## 2133 1794.767 4812.20930
## 2134 1794.767 4812.20930
## 2135 1794.767 4812.20930
## 2136 1794.767 4812.20930
## 2137 9212.791 11656.39535
## 2138 9212.791 11656.39535
## 2139 9212.791 11656.39535
## 2140 9212.791 11656.39535
## 2141 9212.791 11656.39535
## 2142 9212.791 11656.39535
## 2143 9212.791 11656.39535
## 2144 9212.791 11656.39535
## 2145 9212.791 11656.39535
## 2146 9212.791 11656.39535
## 2147 9212.791 11656.39535
## 2148 9212.791 11656.39535
## 2149 9212.791 11656.39535
## 2150 9212.791 11656.39535
## 2151 9212.791 11656.39535
## 2152 9212.791 11656.39535
## 2153 9212.791 11656.39535
## 2154 9212.791 11656.39535
## 2155 9212.791 11656.39535
## 2156 9212.791 11656.39535
## 2157 9212.791 11656.39535
## 2158 9212.791 11656.39535
## 2159 9212.791 11656.39535
## 2160 9212.791 11656.39535
## 2161 12723.837 4932.55814
## 2162 12723.837 4932.55814
## 2163 12723.837 4932.55814
## 2164 12723.837 4932.55814
## 2165 12723.837 4932.55814
## 2166 12723.837 4932.55814
## 2167 12723.837 4932.55814
## 2168 12723.837 4932.55814
## 2169 12723.837 4932.55814
## 2170 12723.837 4932.55814
## 2171 12723.837 4932.55814
## 2172 12723.837 4932.55814
## 2173 12723.837 4932.55814
## 2174 12723.837 4932.55814
## 2175 12723.837 4932.55814
## 2176 12723.837 4932.55814
## 2177 12723.837 4932.55814
## 2178 12723.837 4932.55814
## 2179 12723.837 4932.55814
## 2180 12723.837 4932.55814
## 2181 12723.837 4932.55814
## 2182 12723.837 4932.55814
## 2183 12723.837 4932.55814
## 2184 12723.837 4932.55814
## 2185 16817.442 3261.62791
## 2186 16817.442 3261.62791
## 2187 16817.442 3261.62791
## 2188 16817.442 3261.62791
## 2189 16817.442 3261.62791
## 2190 16817.442 3261.62791
## 2191 16817.442 3261.62791
## 2192 16817.442 3261.62791
## 2193 16817.442 3261.62791
## 2194 16817.442 3261.62791
## 2195 16817.442 3261.62791
## 2196 16817.442 3261.62791
## 2197 16817.442 3261.62791
## 2198 16817.442 3261.62791
## 2199 16817.442 3261.62791
## 2200 16817.442 3261.62791
## 2201 16817.442 3261.62791
## 2202 16817.442 3261.62791
## 2203 16817.442 3261.62791
## 2204 16817.442 3261.62791
## 2205 16817.442 3261.62791
## 2206 16817.442 3261.62791
## 2207 16817.442 3261.62791
## 2208 16817.442 3261.62791
## 2209 13630.814 0.00000
## 2210 13630.814 0.00000
## 2211 13630.814 0.00000
## 2212 13630.814 0.00000
## 2213 13630.814 0.00000
## 2214 13630.814 0.00000
## 2215 13630.814 0.00000
## 2216 13630.814 0.00000
## 2217 13630.814 0.00000
## 2218 13630.814 0.00000
## 2219 13630.814 0.00000
## 2220 13630.814 0.00000
## 2221 13630.814 0.00000
## 2222 13630.814 0.00000
## 2223 13630.814 0.00000
## 2224 13630.814 0.00000
## 2225 13630.814 0.00000
## 2226 13630.814 0.00000
## 2227 13630.814 0.00000
## 2228 13630.814 0.00000
## 2229 13630.814 0.00000
## 2230 13630.814 0.00000
## 2231 13630.814 0.00000
## 2232 13630.814 0.00000
## 2233 8110.465 931.39535
## 2234 8110.465 931.39535
## 2235 8110.465 931.39535
## 2236 8110.465 931.39535
## 2237 8110.465 931.39535
## 2238 8110.465 931.39535
## 2239 8110.465 931.39535
## 2240 8110.465 931.39535
## 2241 8110.465 931.39535
## 2242 8110.465 931.39535
## 2243 8110.465 931.39535
## 2244 8110.465 931.39535
## 2245 8110.465 931.39535
## 2246 8110.465 931.39535
## 2247 8110.465 931.39535
## 2248 8110.465 931.39535
## 2249 8110.465 931.39535
## 2250 8110.465 931.39535
## 2251 8110.465 931.39535
## 2252 8110.465 931.39535
## 2253 8110.465 931.39535
## 2254 8110.465 931.39535
## 2255 8110.465 931.39535
## 2256 8110.465 931.39535
## 2257 12243.314 0.00000
## 2258 12243.314 0.00000
## 2259 12243.314 0.00000
## 2260 12243.314 0.00000
## 2261 12243.314 0.00000
## 2262 12243.314 0.00000
## 2263 12243.314 0.00000
## 2264 12243.314 0.00000
## 2265 12243.314 0.00000
## 2266 12243.314 0.00000
## 2267 12243.314 0.00000
## 2268 12243.314 0.00000
## 2269 12243.314 0.00000
## 2270 12243.314 0.00000
## 2271 12243.314 0.00000
## 2272 12243.314 0.00000
## 2273 12243.314 0.00000
## 2274 12243.314 0.00000
## 2275 12243.314 0.00000
## 2276 12243.314 0.00000
## 2277 12243.314 0.00000
## 2278 12243.314 0.00000
## 2279 12243.314 0.00000
## 2280 12243.314 0.00000
## 2281 10636.919 109.01163
## 2282 10636.919 109.01163
## 2283 10636.919 109.01163
## 2284 10636.919 109.01163
## 2285 10636.919 109.01163
## 2286 10636.919 109.01163
## 2287 10636.919 109.01163
## 2288 10636.919 109.01163
## 2289 10636.919 109.01163
## 2290 10636.919 109.01163
## 2291 10636.919 109.01163
## 2292 10636.919 109.01163
## 2293 10636.919 109.01163
## 2294 10636.919 109.01163
## 2295 10636.919 109.01163
## 2296 10636.919 109.01163
## 2297 10636.919 109.01163
## 2298 10636.919 109.01163
## 2299 10636.919 109.01163
## 2300 10636.919 109.01163
## 2301 10636.919 109.01163
## 2302 10636.919 109.01163
## 2303 10636.919 109.01163
## 2304 10636.919 109.01163
## 2305 1794.767 4812.20930
## 2306 1794.767 4812.20930
## 2307 1794.767 4812.20930
## 2308 1794.767 4812.20930
## 2309 1794.767 4812.20930
## 2310 1794.767 4812.20930
## 2311 1794.767 4812.20930
## 2312 1794.767 4812.20930
## 2313 1794.767 4812.20930
## 2314 1794.767 4812.20930
## 2315 1794.767 4812.20930
## 2316 1794.767 4812.20930
## 2317 1794.767 4812.20930
## 2318 1794.767 4812.20930
## 2319 1794.767 4812.20930
## 2320 1794.767 4812.20930
## 2321 1794.767 4812.20930
## 2322 1794.767 4812.20930
## 2323 1794.767 4812.20930
## 2324 1794.767 4812.20930
## 2325 1794.767 4812.20930
## 2326 1794.767 4812.20930
## 2327 1794.767 4812.20930
## 2328 1794.767 4812.20930
## 2329 7861.047 16487.79070
## 2330 7861.047 16487.79070
## 2331 7861.047 16487.79070
## 2332 7861.047 16487.79070
## 2333 7861.047 16487.79070
## 2334 7861.047 16487.79070
## 2335 7861.047 16487.79070
## 2336 7861.047 16487.79070
## 2337 7861.047 16487.79070
## 2338 7861.047 16487.79070
## 2339 7861.047 16487.79070
## 2340 7861.047 16487.79070
## 2341 7861.047 16487.79070
## 2342 7861.047 16487.79070
## 2343 7861.047 16487.79070
## 2344 7861.047 16487.79070
## 2345 7861.047 16487.79070
## 2346 7861.047 16487.79070
## 2347 7861.047 16487.79070
## 2348 7861.047 16487.79070
## 2349 7861.047 16487.79070
## 2350 7861.047 16487.79070
## 2351 7861.047 16487.79070
## 2352 7861.047 16487.79070
## 2353 12837.209 5795.93023
## 2354 12837.209 5795.93023
## 2355 12837.209 5795.93023
## 2356 12837.209 5795.93023
## 2357 12837.209 5795.93023
## 2358 12837.209 5795.93023
## 2359 12837.209 5795.93023
## 2360 12837.209 5795.93023
## 2361 12837.209 5795.93023
## 2362 12837.209 5795.93023
## 2363 12837.209 5795.93023
## 2364 12837.209 5795.93023
## 2365 12837.209 5795.93023
## 2366 12837.209 5795.93023
## 2367 12837.209 5795.93023
## 2368 12837.209 5795.93023
## 2369 12837.209 5795.93023
## 2370 12837.209 5795.93023
## 2371 12837.209 5795.93023
## 2372 12837.209 5795.93023
## 2373 12837.209 5795.93023
## 2374 12837.209 5795.93023
## 2375 12837.209 5795.93023
## 2376 12837.209 5795.93023
## 2377 8715.698 3636.62791
## 2378 8715.698 3636.62791
## 2379 8715.698 3636.62791
## 2380 8715.698 3636.62791
## 2381 8715.698 3636.62791
## 2382 8715.698 3636.62791
## 2383 8715.698 3636.62791
## 2384 8715.698 3636.62791
## 2385 8715.698 3636.62791
## 2386 8715.698 3636.62791
## 2387 8715.698 3636.62791
## 2388 8715.698 3636.62791
## 2389 8715.698 3636.62791
## 2390 8715.698 3636.62791
## 2391 8715.698 3636.62791
## 2392 8715.698 3636.62791
## 2393 8715.698 3636.62791
## 2394 8715.698 3636.62791
## 2395 8715.698 3636.62791
## 2396 8715.698 3636.62791
## 2397 8715.698 3636.62791
## 2398 8715.698 3636.62791
## 2399 8715.698 3636.62791
## 2400 8715.698 3636.62791
## 2401 11354.651 0.00000
## 2402 11354.651 0.00000
## 2403 11354.651 0.00000
## 2404 11354.651 0.00000
## 2405 11354.651 0.00000
## 2406 11354.651 0.00000
## 2407 11354.651 0.00000
## 2408 11354.651 0.00000
## 2409 11354.651 0.00000
## 2410 11354.651 0.00000
## 2411 11354.651 0.00000
## 2412 11354.651 0.00000
## 2413 11354.651 0.00000
## 2414 11354.651 0.00000
## 2415 11354.651 0.00000
## 2416 11354.651 0.00000
## 2417 11354.651 0.00000
## 2418 11354.651 0.00000
## 2419 11354.651 0.00000
## 2420 11354.651 0.00000
## 2421 11354.651 0.00000
## 2422 11354.651 0.00000
## 2423 11354.651 0.00000
## 2424 11354.651 0.00000
## 2425 3584.302 94.18605
## 2426 3584.302 94.18605
## 2427 3584.302 94.18605
## 2428 3584.302 94.18605
## 2429 3584.302 94.18605
## 2430 3584.302 94.18605
## 2431 3584.302 94.18605
## 2432 3584.302 94.18605
## 2433 3584.302 94.18605
## 2434 3584.302 94.18605
## 2435 3584.302 94.18605
## 2436 3584.302 94.18605
## 2437 3584.302 94.18605
## 2438 3584.302 94.18605
## 2439 3584.302 94.18605
## 2440 3584.302 94.18605
## 2441 3584.302 94.18605
## 2442 3584.302 94.18605
## 2443 3584.302 94.18605
## 2444 3584.302 94.18605
## 2445 3584.302 94.18605
## 2446 3584.302 94.18605
## 2447 3584.302 94.18605
## 2448 3584.302 94.18605
## 2449 13638.663 327.03488
## 2450 13638.663 327.03488
## 2451 13638.663 327.03488
## 2452 13638.663 327.03488
## 2453 13638.663 327.03488
## 2454 13638.663 327.03488
## 2455 13638.663 327.03488
## 2456 13638.663 327.03488
## 2457 13638.663 327.03488
## 2458 13638.663 327.03488
## 2459 13638.663 327.03488
## 2460 13638.663 327.03488
## 2461 13638.663 327.03488
## 2462 13638.663 327.03488
## 2463 13638.663 327.03488
## 2464 13638.663 327.03488
## 2465 13638.663 327.03488
## 2466 13638.663 327.03488
## 2467 13638.663 327.03488
## 2468 13638.663 327.03488
## 2469 13638.663 327.03488
## 2470 13638.663 327.03488
## 2471 13638.663 327.03488
## 2472 13638.663 327.03488
## 2473 20155.814 109.01163
## 2474 20155.814 109.01163
## 2475 20155.814 109.01163
## 2476 20155.814 109.01163
## 2477 20155.814 109.01163
## 2478 20155.814 109.01163
## 2479 20155.814 109.01163
## 2480 20155.814 109.01163
## 2481 20155.814 109.01163
## 2482 20155.814 109.01163
## 2483 20155.814 109.01163
## 2484 20155.814 109.01163
## 2485 20155.814 109.01163
## 2486 20155.814 109.01163
## 2487 20155.814 109.01163
## 2488 20155.814 109.01163
## 2489 20155.814 109.01163
## 2490 20155.814 109.01163
## 2491 20155.814 109.01163
## 2492 20155.814 109.01163
## 2493 20155.814 109.01163
## 2494 20155.814 109.01163
## 2495 20155.814 109.01163
## 2496 20155.814 109.01163
## 2497 1794.767 4812.20930
## 2498 1794.767 4812.20930
## 2499 1794.767 4812.20930
## 2500 1794.767 4812.20930
## 2501 1794.767 4812.20930
## 2502 1794.767 4812.20930
## 2503 1794.767 4812.20930
## 2504 1794.767 4812.20930
## 2505 1794.767 4812.20930
## 2506 1794.767 4812.20930
## 2507 1794.767 4812.20930
## 2508 1794.767 4812.20930
## 2509 1794.767 4812.20930
## 2510 1794.767 4812.20930
## 2511 1794.767 4812.20930
## 2512 1794.767 4812.20930
## 2513 1794.767 4812.20930
## 2514 1794.767 4812.20930
## 2515 1794.767 4812.20930
## 2516 1794.767 4812.20930
## 2517 1794.767 4812.20930
## 2518 1794.767 4812.20930
## 2519 1794.767 4812.20930
## 2520 1794.767 4812.20930
## 2521 9744.767 10819.18605
## 2522 9744.767 10819.18605
## 2523 9744.767 10819.18605
## 2524 9744.767 10819.18605
## 2525 9744.767 10819.18605
## 2526 9744.767 10819.18605
## 2527 9744.767 10819.18605
## 2528 9744.767 10819.18605
## 2529 9744.767 10819.18605
## 2530 9744.767 10819.18605
## 2531 9744.767 10819.18605
## 2532 9744.767 10819.18605
## 2533 9744.767 10819.18605
## 2534 9744.767 10819.18605
## 2535 9744.767 10819.18605
## 2536 9744.767 10819.18605
## 2537 9744.767 10819.18605
## 2538 9744.767 10819.18605
## 2539 9744.767 10819.18605
## 2540 9744.767 10819.18605
## 2541 9744.767 10819.18605
## 2542 9744.767 10819.18605
## 2543 9744.767 10819.18605
## 2544 9744.767 10819.18605
## 2545 17223.837 1845.34884
## 2546 17223.837 1845.34884
## 2547 17223.837 1845.34884
## 2548 17223.837 1845.34884
## 2549 17223.837 1845.34884
## 2550 17223.837 1845.34884
## 2551 17223.837 1845.34884
## 2552 17223.837 1845.34884
## 2553 17223.837 1845.34884
## 2554 17223.837 1845.34884
## 2555 17223.837 1845.34884
## 2556 17223.837 1845.34884
## 2557 17223.837 1845.34884
## 2558 17223.837 1845.34884
## 2559 17223.837 1845.34884
## 2560 17223.837 1845.34884
## 2561 17223.837 1845.34884
## 2562 17223.837 1845.34884
## 2563 17223.837 1845.34884
## 2564 17223.837 1845.34884
## 2565 17223.837 1845.34884
## 2566 17223.837 1845.34884
## 2567 17223.837 1845.34884
## 2568 17223.837 1845.34884
## 2569 12169.186 1090.11628
## 2570 12169.186 1090.11628
## 2571 12169.186 1090.11628
## 2572 12169.186 1090.11628
## 2573 12169.186 1090.11628
## 2574 12169.186 1090.11628
## 2575 12169.186 1090.11628
## 2576 12169.186 1090.11628
## 2577 12169.186 1090.11628
## 2578 12169.186 1090.11628
## 2579 12169.186 1090.11628
## 2580 12169.186 1090.11628
## 2581 12169.186 1090.11628
## 2582 12169.186 1090.11628
## 2583 12169.186 1090.11628
## 2584 12169.186 1090.11628
## 2585 12169.186 1090.11628
## 2586 12169.186 1090.11628
## 2587 12169.186 1090.11628
## 2588 12169.186 1090.11628
## 2589 12169.186 1090.11628
## 2590 12169.186 1090.11628
## 2591 12169.186 1090.11628
## 2592 12169.186 1090.11628
## 2593 11284.884 0.00000
## 2594 11284.884 0.00000
## 2595 11284.884 0.00000
## 2596 11284.884 0.00000
## 2597 11284.884 0.00000
## 2598 11284.884 0.00000
## 2599 11284.884 0.00000
## 2600 11284.884 0.00000
## 2601 11284.884 0.00000
## 2602 11284.884 0.00000
## 2603 11284.884 0.00000
## 2604 11284.884 0.00000
## 2605 11284.884 0.00000
## 2606 11284.884 0.00000
## 2607 11284.884 0.00000
## 2608 11284.884 0.00000
## 2609 11284.884 0.00000
## 2610 11284.884 0.00000
## 2611 11284.884 0.00000
## 2612 11284.884 0.00000
## 2613 11284.884 0.00000
## 2614 11284.884 0.00000
## 2615 11284.884 0.00000
## 2616 11284.884 0.00000
## 2617 5206.395 94.18605
## 2618 5206.395 94.18605
## 2619 5206.395 94.18605
## 2620 5206.395 94.18605
## 2621 5206.395 94.18605
## 2622 5206.395 94.18605
## 2623 5206.395 94.18605
## 2624 5206.395 94.18605
## 2625 5206.395 94.18605
## 2626 5206.395 94.18605
## 2627 5206.395 94.18605
## 2628 5206.395 94.18605
## 2629 5206.395 94.18605
## 2630 5206.395 94.18605
## 2631 5206.395 94.18605
## total_metaecosystem_Eug_indiv total_metaecosystem_Eup_indiv
## 1 7834.88372 3155.2326
## 2 7834.88372 3155.2326
## 3 7834.88372 3155.2326
## 4 7834.88372 3155.2326
## 5 7834.88372 3155.2326
## 6 7834.88372 3155.2326
## 7 7834.88372 3155.2326
## 8 7834.88372 3155.2326
## 9 7834.88372 3155.2326
## 10 7834.88372 3155.2326
## 11 7834.88372 3155.2326
## 12 7834.88372 3155.2326
## 13 7834.88372 3155.2326
## 14 7834.88372 3155.2326
## 15 7834.88372 3155.2326
## 16 7834.88372 3155.2326
## 17 7834.88372 3155.2326
## 18 7834.88372 3155.2326
## 19 7834.88372 3155.2326
## 20 7834.88372 3155.2326
## 21 7834.88372 3155.2326
## 22 7834.88372 3155.2326
## 23 7834.88372 3155.2326
## 24 7834.88372 3155.2326
## 25 3057.55814 4484.3023
## 26 3057.55814 4484.3023
## 27 3057.55814 4484.3023
## 28 3057.55814 4484.3023
## 29 3057.55814 4484.3023
## 30 3057.55814 4484.3023
## 31 3057.55814 4484.3023
## 32 3057.55814 4484.3023
## 33 3057.55814 4484.3023
## 34 3057.55814 4484.3023
## 35 3057.55814 4484.3023
## 36 3057.55814 4484.3023
## 37 3057.55814 4484.3023
## 38 3057.55814 4484.3023
## 39 3057.55814 4484.3023
## 40 3057.55814 4484.3023
## 41 3057.55814 4484.3023
## 42 3057.55814 4484.3023
## 43 3057.55814 4484.3023
## 44 3057.55814 4484.3023
## 45 3057.55814 4484.3023
## 46 3057.55814 4484.3023
## 47 3057.55814 4484.3023
## 48 3057.55814 4484.3023
## 49 218.02326 1318.6047
## 50 218.02326 1318.6047
## 51 218.02326 1318.6047
## 52 218.02326 1318.6047
## 53 218.02326 1318.6047
## 54 218.02326 1318.6047
## 55 218.02326 1318.6047
## 56 218.02326 1318.6047
## 57 218.02326 1318.6047
## 58 218.02326 1318.6047
## 59 218.02326 1318.6047
## 60 218.02326 1318.6047
## 61 218.02326 1318.6047
## 62 218.02326 1318.6047
## 63 218.02326 1318.6047
## 64 218.02326 1318.6047
## 65 218.02326 1318.6047
## 66 218.02326 1318.6047
## 67 218.02326 1318.6047
## 68 218.02326 1318.6047
## 69 218.02326 1318.6047
## 70 218.02326 1318.6047
## 71 218.02326 1318.6047
## 72 218.02326 1318.6047
## 73 0.00000 5084.3023
## 74 0.00000 5084.3023
## 75 0.00000 5084.3023
## 76 0.00000 5084.3023
## 77 0.00000 5084.3023
## 78 0.00000 5084.3023
## 79 0.00000 5084.3023
## 80 0.00000 5084.3023
## 81 0.00000 5084.3023
## 82 0.00000 5084.3023
## 83 0.00000 5084.3023
## 84 0.00000 5084.3023
## 85 0.00000 5084.3023
## 86 0.00000 5084.3023
## 87 0.00000 5084.3023
## 88 0.00000 5084.3023
## 89 0.00000 5084.3023
## 90 0.00000 5084.3023
## 91 0.00000 5084.3023
## 92 0.00000 5084.3023
## 93 0.00000 5084.3023
## 94 0.00000 5084.3023
## 95 0.00000 5084.3023
## 96 0.00000 5084.3023
## 97 0.00000 5241.2791
## 98 0.00000 5241.2791
## 99 0.00000 5241.2791
## 100 0.00000 5241.2791
## 101 0.00000 5241.2791
## 102 0.00000 5241.2791
## 103 0.00000 5241.2791
## 104 0.00000 5241.2791
## 105 0.00000 5241.2791
## 106 0.00000 5241.2791
## 107 0.00000 5241.2791
## 108 0.00000 5241.2791
## 109 0.00000 5241.2791
## 110 0.00000 5241.2791
## 111 0.00000 5241.2791
## 112 0.00000 5241.2791
## 113 0.00000 5241.2791
## 114 0.00000 5241.2791
## 115 0.00000 5241.2791
## 116 0.00000 5241.2791
## 117 0.00000 5241.2791
## 118 0.00000 5241.2791
## 119 0.00000 5241.2791
## 120 0.00000 5241.2791
## 121 0.00000 2956.3953
## 122 0.00000 2956.3953
## 123 0.00000 2956.3953
## 124 0.00000 2956.3953
## 125 0.00000 2956.3953
## 126 0.00000 2956.3953
## 127 0.00000 2956.3953
## 128 0.00000 2956.3953
## 129 0.00000 2956.3953
## 130 0.00000 2956.3953
## 131 0.00000 2956.3953
## 132 0.00000 2956.3953
## 133 0.00000 2956.3953
## 134 0.00000 2956.3953
## 135 0.00000 2956.3953
## 136 0.00000 2956.3953
## 137 0.00000 2956.3953
## 138 0.00000 2956.3953
## 139 0.00000 2956.3953
## 140 0.00000 2956.3953
## 141 0.00000 2956.3953
## 142 0.00000 2956.3953
## 143 0.00000 2956.3953
## 144 0.00000 2956.3953
## 145 0.00000 662.7907
## 146 0.00000 662.7907
## 147 0.00000 662.7907
## 148 0.00000 662.7907
## 149 0.00000 662.7907
## 150 0.00000 662.7907
## 151 0.00000 662.7907
## 152 0.00000 662.7907
## 153 0.00000 662.7907
## 154 0.00000 662.7907
## 155 0.00000 662.7907
## 156 0.00000 662.7907
## 157 0.00000 662.7907
## 158 0.00000 662.7907
## 159 0.00000 662.7907
## 160 0.00000 662.7907
## 161 0.00000 662.7907
## 162 0.00000 662.7907
## 163 0.00000 662.7907
## 164 0.00000 662.7907
## 165 0.00000 662.7907
## 166 0.00000 662.7907
## 167 0.00000 662.7907
## 168 0.00000 662.7907
## 169 1090.11628 2428.7791
## 170 1090.11628 2428.7791
## 171 1090.11628 2428.7791
## 172 1090.11628 2428.7791
## 173 1090.11628 2428.7791
## 174 1090.11628 2428.7791
## 175 1090.11628 2428.7791
## 176 1090.11628 2428.7791
## 177 1090.11628 2428.7791
## 178 1090.11628 2428.7791
## 179 1090.11628 2428.7791
## 180 1090.11628 2428.7791
## 181 1090.11628 2428.7791
## 182 1090.11628 2428.7791
## 183 1090.11628 2428.7791
## 184 1090.11628 2428.7791
## 185 1090.11628 2428.7791
## 186 1090.11628 2428.7791
## 187 1090.11628 2428.7791
## 188 1090.11628 2428.7791
## 189 1090.11628 2428.7791
## 190 1090.11628 2428.7791
## 191 1090.11628 2428.7791
## 192 1090.11628 2428.7791
## 193 7834.88372 3155.2326
## 194 7834.88372 3155.2326
## 195 7834.88372 3155.2326
## 196 7834.88372 3155.2326
## 197 7834.88372 3155.2326
## 198 7834.88372 3155.2326
## 199 7834.88372 3155.2326
## 200 7834.88372 3155.2326
## 201 7834.88372 3155.2326
## 202 7834.88372 3155.2326
## 203 7834.88372 3155.2326
## 204 7834.88372 3155.2326
## 205 7834.88372 3155.2326
## 206 7834.88372 3155.2326
## 207 7834.88372 3155.2326
## 208 7834.88372 3155.2326
## 209 7834.88372 3155.2326
## 210 7834.88372 3155.2326
## 211 7834.88372 3155.2326
## 212 7834.88372 3155.2326
## 213 7834.88372 3155.2326
## 214 7834.88372 3155.2326
## 215 7834.88372 3155.2326
## 216 7834.88372 3155.2326
## 217 1941.27907 8312.7907
## 218 1941.27907 8312.7907
## 219 1941.27907 8312.7907
## 220 1941.27907 8312.7907
## 221 1941.27907 8312.7907
## 222 1941.27907 8312.7907
## 223 1941.27907 8312.7907
## 224 1941.27907 8312.7907
## 225 1941.27907 8312.7907
## 226 1941.27907 8312.7907
## 227 1941.27907 8312.7907
## 228 1941.27907 8312.7907
## 229 1941.27907 8312.7907
## 230 1941.27907 8312.7907
## 231 1941.27907 8312.7907
## 232 1941.27907 8312.7907
## 233 1941.27907 8312.7907
## 234 1941.27907 8312.7907
## 235 1941.27907 8312.7907
## 236 1941.27907 8312.7907
## 237 1941.27907 8312.7907
## 238 1941.27907 8312.7907
## 239 1941.27907 8312.7907
## 240 1941.27907 8312.7907
## 241 218.02326 3071.5116
## 242 218.02326 3071.5116
## 243 218.02326 3071.5116
## 244 218.02326 3071.5116
## 245 218.02326 3071.5116
## 246 218.02326 3071.5116
## 247 218.02326 3071.5116
## 248 218.02326 3071.5116
## 249 218.02326 3071.5116
## 250 218.02326 3071.5116
## 251 218.02326 3071.5116
## 252 218.02326 3071.5116
## 253 218.02326 3071.5116
## 254 218.02326 3071.5116
## 255 218.02326 3071.5116
## 256 218.02326 3071.5116
## 257 218.02326 3071.5116
## 258 218.02326 3071.5116
## 259 218.02326 3071.5116
## 260 218.02326 3071.5116
## 261 218.02326 3071.5116
## 262 218.02326 3071.5116
## 263 218.02326 3071.5116
## 264 218.02326 3071.5116
## 265 1438.95349 4988.3721
## 266 1438.95349 4988.3721
## 267 1438.95349 4988.3721
## 268 1438.95349 4988.3721
## 269 1438.95349 4988.3721
## 270 1438.95349 4988.3721
## 271 1438.95349 4988.3721
## 272 1438.95349 4988.3721
## 273 1438.95349 4988.3721
## 274 1438.95349 4988.3721
## 275 1438.95349 4988.3721
## 276 1438.95349 4988.3721
## 277 1438.95349 4988.3721
## 278 1438.95349 4988.3721
## 279 1438.95349 4988.3721
## 280 1438.95349 4988.3721
## 281 1438.95349 4988.3721
## 282 1438.95349 4988.3721
## 283 1438.95349 4988.3721
## 284 1438.95349 4988.3721
## 285 1438.95349 4988.3721
## 286 1438.95349 4988.3721
## 287 1438.95349 4988.3721
## 288 1438.95349 4988.3721
## 289 0.00000 4534.8837
## 290 0.00000 4534.8837
## 291 0.00000 4534.8837
## 292 0.00000 4534.8837
## 293 0.00000 4534.8837
## 294 0.00000 4534.8837
## 295 0.00000 4534.8837
## 296 0.00000 4534.8837
## 297 0.00000 4534.8837
## 298 0.00000 4534.8837
## 299 0.00000 4534.8837
## 300 0.00000 4534.8837
## 301 0.00000 4534.8837
## 302 0.00000 4534.8837
## 303 0.00000 4534.8837
## 304 0.00000 4534.8837
## 305 0.00000 4534.8837
## 306 0.00000 4534.8837
## 307 0.00000 4534.8837
## 308 0.00000 4534.8837
## 309 0.00000 4534.8837
## 310 0.00000 4534.8837
## 311 0.00000 4534.8837
## 312 0.00000 4534.8837
## 313 0.00000 1456.3953
## 314 0.00000 1456.3953
## 315 0.00000 1456.3953
## 316 0.00000 1456.3953
## 317 0.00000 1456.3953
## 318 0.00000 1456.3953
## 319 0.00000 1456.3953
## 320 0.00000 1456.3953
## 321 0.00000 1456.3953
## 322 0.00000 1456.3953
## 323 0.00000 1456.3953
## 324 0.00000 1456.3953
## 325 0.00000 1456.3953
## 326 0.00000 1456.3953
## 327 0.00000 1456.3953
## 328 0.00000 1456.3953
## 329 0.00000 1456.3953
## 330 0.00000 1456.3953
## 331 0.00000 1456.3953
## 332 0.00000 1456.3953
## 333 0.00000 1456.3953
## 334 0.00000 1456.3953
## 335 0.00000 1456.3953
## 336 0.00000 1456.3953
## 337 1312.50000 1059.5930
## 338 1312.50000 1059.5930
## 339 1312.50000 1059.5930
## 340 1312.50000 1059.5930
## 341 1312.50000 1059.5930
## 342 1312.50000 1059.5930
## 343 1312.50000 1059.5930
## 344 1312.50000 1059.5930
## 345 1312.50000 1059.5930
## 346 1312.50000 1059.5930
## 347 1312.50000 1059.5930
## 348 1312.50000 1059.5930
## 349 1312.50000 1059.5930
## 350 1312.50000 1059.5930
## 351 1312.50000 1059.5930
## 352 1312.50000 1059.5930
## 353 1312.50000 1059.5930
## 354 1312.50000 1059.5930
## 355 1312.50000 1059.5930
## 356 1312.50000 1059.5930
## 357 1312.50000 1059.5930
## 358 1312.50000 1059.5930
## 359 1312.50000 1059.5930
## 360 1312.50000 1059.5930
## 361 1962.20930 1360.4651
## 362 1962.20930 1360.4651
## 363 1962.20930 1360.4651
## 364 1962.20930 1360.4651
## 365 1962.20930 1360.4651
## 366 1962.20930 1360.4651
## 367 1962.20930 1360.4651
## 368 1962.20930 1360.4651
## 369 1962.20930 1360.4651
## 370 1962.20930 1360.4651
## 371 1962.20930 1360.4651
## 372 1962.20930 1360.4651
## 373 1962.20930 1360.4651
## 374 1962.20930 1360.4651
## 375 1962.20930 1360.4651
## 376 1962.20930 1360.4651
## 377 1962.20930 1360.4651
## 378 1962.20930 1360.4651
## 379 1962.20930 1360.4651
## 380 1962.20930 1360.4651
## 381 1962.20930 1360.4651
## 382 1962.20930 1360.4651
## 383 1962.20930 1360.4651
## 384 1962.20930 1360.4651
## 385 7834.88372 3155.2326
## 386 7834.88372 3155.2326
## 387 7834.88372 3155.2326
## 388 7834.88372 3155.2326
## 389 7834.88372 3155.2326
## 390 7834.88372 3155.2326
## 391 7834.88372 3155.2326
## 392 7834.88372 3155.2326
## 393 7834.88372 3155.2326
## 394 7834.88372 3155.2326
## 395 7834.88372 3155.2326
## 396 7834.88372 3155.2326
## 397 7834.88372 3155.2326
## 398 7834.88372 3155.2326
## 399 7834.88372 3155.2326
## 400 7834.88372 3155.2326
## 401 7834.88372 3155.2326
## 402 7834.88372 3155.2326
## 403 7834.88372 3155.2326
## 404 7834.88372 3155.2326
## 405 7834.88372 3155.2326
## 406 7834.88372 3155.2326
## 407 7834.88372 3155.2326
## 408 7834.88372 3155.2326
## 409 2263.95349 2190.6977
## 410 2263.95349 2190.6977
## 411 2263.95349 2190.6977
## 412 2263.95349 2190.6977
## 413 2263.95349 2190.6977
## 414 2263.95349 2190.6977
## 415 2263.95349 2190.6977
## 416 2263.95349 2190.6977
## 417 2263.95349 2190.6977
## 418 2263.95349 2190.6977
## 419 2263.95349 2190.6977
## 420 2263.95349 2190.6977
## 421 2263.95349 2190.6977
## 422 2263.95349 2190.6977
## 423 2263.95349 2190.6977
## 424 2263.95349 2190.6977
## 425 2263.95349 2190.6977
## 426 2263.95349 2190.6977
## 427 2263.95349 2190.6977
## 428 2263.95349 2190.6977
## 429 2263.95349 2190.6977
## 430 2263.95349 2190.6977
## 431 2263.95349 2190.6977
## 432 2263.95349 2190.6977
## 433 218.02326 6586.0465
## 434 218.02326 6586.0465
## 435 218.02326 6586.0465
## 436 218.02326 6586.0465
## 437 218.02326 6586.0465
## 438 218.02326 6586.0465
## 439 218.02326 6586.0465
## 440 218.02326 6586.0465
## 441 218.02326 6586.0465
## 442 218.02326 6586.0465
## 443 218.02326 6586.0465
## 444 218.02326 6586.0465
## 445 218.02326 6586.0465
## 446 218.02326 6586.0465
## 447 218.02326 6586.0465
## 448 218.02326 6586.0465
## 449 218.02326 6586.0465
## 450 218.02326 6586.0465
## 451 218.02326 6586.0465
## 452 218.02326 6586.0465
## 453 218.02326 6586.0465
## 454 218.02326 6586.0465
## 455 218.02326 6586.0465
## 456 218.02326 6586.0465
## 457 837.20930 3453.4884
## 458 837.20930 3453.4884
## 459 837.20930 3453.4884
## 460 837.20930 3453.4884
## 461 837.20930 3453.4884
## 462 837.20930 3453.4884
## 463 837.20930 3453.4884
## 464 837.20930 3453.4884
## 465 837.20930 3453.4884
## 466 837.20930 3453.4884
## 467 837.20930 3453.4884
## 468 837.20930 3453.4884
## 469 837.20930 3453.4884
## 470 837.20930 3453.4884
## 471 837.20930 3453.4884
## 472 837.20930 3453.4884
## 473 837.20930 3453.4884
## 474 837.20930 3453.4884
## 475 837.20930 3453.4884
## 476 837.20930 3453.4884
## 477 837.20930 3453.4884
## 478 837.20930 3453.4884
## 479 837.20930 3453.4884
## 480 837.20930 3453.4884
## 481 0.00000 2136.6279
## 482 0.00000 2136.6279
## 483 0.00000 2136.6279
## 484 0.00000 2136.6279
## 485 0.00000 2136.6279
## 486 0.00000 2136.6279
## 487 0.00000 2136.6279
## 488 0.00000 2136.6279
## 489 0.00000 2136.6279
## 490 0.00000 2136.6279
## 491 0.00000 2136.6279
## 492 0.00000 2136.6279
## 493 0.00000 2136.6279
## 494 0.00000 2136.6279
## 495 0.00000 2136.6279
## 496 0.00000 2136.6279
## 497 0.00000 2136.6279
## 498 0.00000 2136.6279
## 499 0.00000 2136.6279
## 500 0.00000 2136.6279
## 501 0.00000 2136.6279
## 502 0.00000 2136.6279
## 503 0.00000 2136.6279
## 504 0.00000 2136.6279
## 505 0.00000 383.7209
## 506 0.00000 383.7209
## 507 0.00000 383.7209
## 508 0.00000 383.7209
## 509 0.00000 383.7209
## 510 0.00000 383.7209
## 511 0.00000 383.7209
## 512 0.00000 383.7209
## 513 0.00000 383.7209
## 514 0.00000 383.7209
## 515 0.00000 383.7209
## 516 0.00000 383.7209
## 517 0.00000 383.7209
## 518 0.00000 383.7209
## 519 0.00000 383.7209
## 520 0.00000 383.7209
## 521 0.00000 383.7209
## 522 0.00000 383.7209
## 523 0.00000 383.7209
## 524 0.00000 383.7209
## 525 0.00000 383.7209
## 526 0.00000 383.7209
## 527 0.00000 383.7209
## 528 0.00000 383.7209
## 529 859.01163 0.0000
## 530 859.01163 0.0000
## 531 859.01163 0.0000
## 532 859.01163 0.0000
## 533 859.01163 0.0000
## 534 859.01163 0.0000
## 535 859.01163 0.0000
## 536 859.01163 0.0000
## 537 859.01163 0.0000
## 538 859.01163 0.0000
## 539 859.01163 0.0000
## 540 859.01163 0.0000
## 541 859.01163 0.0000
## 542 859.01163 0.0000
## 543 859.01163 0.0000
## 544 859.01163 0.0000
## 545 859.01163 0.0000
## 546 859.01163 0.0000
## 547 859.01163 0.0000
## 548 859.01163 0.0000
## 549 859.01163 0.0000
## 550 859.01163 0.0000
## 551 859.01163 0.0000
## 552 859.01163 0.0000
## 553 1090.11628 4469.4767
## 554 1090.11628 4469.4767
## 555 1090.11628 4469.4767
## 556 1090.11628 4469.4767
## 557 1090.11628 4469.4767
## 558 1090.11628 4469.4767
## 559 1090.11628 4469.4767
## 560 1090.11628 4469.4767
## 561 1090.11628 4469.4767
## 562 1090.11628 4469.4767
## 563 1090.11628 4469.4767
## 564 1090.11628 4469.4767
## 565 1090.11628 4469.4767
## 566 1090.11628 4469.4767
## 567 1090.11628 4469.4767
## 568 1090.11628 4469.4767
## 569 1090.11628 4469.4767
## 570 1090.11628 4469.4767
## 571 1090.11628 4469.4767
## 572 1090.11628 4469.4767
## 573 1090.11628 4469.4767
## 574 1090.11628 4469.4767
## 575 1090.11628 4469.4767
## 576 1090.11628 4469.4767
## 577 7834.88372 3155.2326
## 578 7834.88372 3155.2326
## 579 7834.88372 3155.2326
## 580 7834.88372 3155.2326
## 581 7834.88372 3155.2326
## 582 7834.88372 3155.2326
## 583 7834.88372 3155.2326
## 584 7834.88372 3155.2326
## 585 7834.88372 3155.2326
## 586 7834.88372 3155.2326
## 587 7834.88372 3155.2326
## 588 7834.88372 3155.2326
## 589 7834.88372 3155.2326
## 590 7834.88372 3155.2326
## 591 7834.88372 3155.2326
## 592 7834.88372 3155.2326
## 593 7834.88372 3155.2326
## 594 7834.88372 3155.2326
## 595 7834.88372 3155.2326
## 596 7834.88372 3155.2326
## 597 7834.88372 3155.2326
## 598 7834.88372 3155.2326
## 599 7834.88372 3155.2326
## 600 7834.88372 3155.2326
## 601 877.32558 2417.4419
## 602 877.32558 2417.4419
## 603 877.32558 2417.4419
## 604 877.32558 2417.4419
## 605 877.32558 2417.4419
## 606 877.32558 2417.4419
## 607 877.32558 2417.4419
## 608 877.32558 2417.4419
## 609 877.32558 2417.4419
## 610 877.32558 2417.4419
## 611 877.32558 2417.4419
## 612 877.32558 2417.4419
## 613 877.32558 2417.4419
## 614 877.32558 2417.4419
## 615 877.32558 2417.4419
## 616 877.32558 2417.4419
## 617 877.32558 2417.4419
## 618 877.32558 2417.4419
## 619 877.32558 2417.4419
## 620 877.32558 2417.4419
## 621 877.32558 2417.4419
## 622 877.32558 2417.4419
## 623 877.32558 2417.4419
## 624 877.32558 2417.4419
## 625 218.02326 8234.3023
## 626 218.02326 8234.3023
## 627 218.02326 8234.3023
## 628 218.02326 8234.3023
## 629 218.02326 8234.3023
## 630 218.02326 8234.3023
## 631 218.02326 8234.3023
## 632 218.02326 8234.3023
## 633 218.02326 8234.3023
## 634 218.02326 8234.3023
## 635 218.02326 8234.3023
## 636 218.02326 8234.3023
## 637 218.02326 8234.3023
## 638 218.02326 8234.3023
## 639 218.02326 8234.3023
## 640 218.02326 8234.3023
## 641 218.02326 8234.3023
## 642 218.02326 8234.3023
## 643 218.02326 8234.3023
## 644 218.02326 8234.3023
## 645 218.02326 8234.3023
## 646 218.02326 8234.3023
## 647 218.02326 8234.3023
## 648 218.02326 8234.3023
## 649 0.00000 1090.1163
## 650 0.00000 1090.1163
## 651 0.00000 1090.1163
## 652 0.00000 1090.1163
## 653 0.00000 1090.1163
## 654 0.00000 1090.1163
## 655 0.00000 1090.1163
## 656 0.00000 1090.1163
## 657 0.00000 1090.1163
## 658 0.00000 1090.1163
## 659 0.00000 1090.1163
## 660 0.00000 1090.1163
## 661 0.00000 1090.1163
## 662 0.00000 1090.1163
## 663 0.00000 1090.1163
## 664 0.00000 1090.1163
## 665 0.00000 1090.1163
## 666 0.00000 1090.1163
## 667 0.00000 1090.1163
## 668 0.00000 1090.1163
## 669 0.00000 1090.1163
## 670 0.00000 1090.1163
## 671 0.00000 1090.1163
## 672 0.00000 1090.1163
## 673 287.79070 5781.9767
## 674 287.79070 5781.9767
## 675 287.79070 5781.9767
## 676 287.79070 5781.9767
## 677 287.79070 5781.9767
## 678 287.79070 5781.9767
## 679 287.79070 5781.9767
## 680 287.79070 5781.9767
## 681 287.79070 5781.9767
## 682 287.79070 5781.9767
## 683 287.79070 5781.9767
## 684 287.79070 5781.9767
## 685 287.79070 5781.9767
## 686 287.79070 5781.9767
## 687 287.79070 5781.9767
## 688 287.79070 5781.9767
## 689 287.79070 5781.9767
## 690 287.79070 5781.9767
## 691 287.79070 5781.9767
## 692 287.79070 5781.9767
## 693 287.79070 5781.9767
## 694 287.79070 5781.9767
## 695 287.79070 5781.9767
## 696 287.79070 5781.9767
## 697 1090.11628 0.0000
## 698 1090.11628 0.0000
## 699 1090.11628 0.0000
## 700 1090.11628 0.0000
## 701 1090.11628 0.0000
## 702 1090.11628 0.0000
## 703 1090.11628 0.0000
## 704 1090.11628 0.0000
## 705 1090.11628 0.0000
## 706 1090.11628 0.0000
## 707 1090.11628 0.0000
## 708 1090.11628 0.0000
## 709 1090.11628 0.0000
## 710 1090.11628 0.0000
## 711 1090.11628 0.0000
## 712 1090.11628 0.0000
## 713 1090.11628 0.0000
## 714 1090.11628 0.0000
## 715 1090.11628 0.0000
## 716 1090.11628 0.0000
## 717 1090.11628 0.0000
## 718 1090.11628 0.0000
## 719 1090.11628 0.0000
## 720 1090.11628 0.0000
## 721 505.81395 1369.1860
## 722 505.81395 1369.1860
## 723 505.81395 1369.1860
## 724 505.81395 1369.1860
## 725 505.81395 1369.1860
## 726 505.81395 1369.1860
## 727 505.81395 1369.1860
## 728 505.81395 1369.1860
## 729 505.81395 1369.1860
## 730 505.81395 1369.1860
## 731 505.81395 1369.1860
## 732 505.81395 1369.1860
## 733 505.81395 1369.1860
## 734 505.81395 1369.1860
## 735 505.81395 1369.1860
## 736 505.81395 1369.1860
## 737 505.81395 1369.1860
## 738 505.81395 1369.1860
## 739 505.81395 1369.1860
## 740 505.81395 1369.1860
## 741 505.81395 1369.1860
## 742 505.81395 1369.1860
## 743 505.81395 1369.1860
## 744 505.81395 1369.1860
## 745 0.00000 170.0581
## 746 0.00000 170.0581
## 747 0.00000 170.0581
## 748 0.00000 170.0581
## 749 0.00000 170.0581
## 750 0.00000 170.0581
## 751 0.00000 170.0581
## 752 0.00000 170.0581
## 753 0.00000 170.0581
## 754 0.00000 170.0581
## 755 0.00000 170.0581
## 756 0.00000 170.0581
## 757 0.00000 170.0581
## 758 0.00000 170.0581
## 759 0.00000 170.0581
## 760 0.00000 170.0581
## 761 0.00000 170.0581
## 762 0.00000 170.0581
## 763 0.00000 170.0581
## 764 0.00000 170.0581
## 765 0.00000 170.0581
## 766 0.00000 170.0581
## 767 0.00000 170.0581
## 768 0.00000 170.0581
## 769 7834.88372 3155.2326
## 770 7834.88372 3155.2326
## 771 7834.88372 3155.2326
## 772 7834.88372 3155.2326
## 773 7834.88372 3155.2326
## 774 7834.88372 3155.2326
## 775 7834.88372 3155.2326
## 776 7834.88372 3155.2326
## 777 7834.88372 3155.2326
## 778 7834.88372 3155.2326
## 779 7834.88372 3155.2326
## 780 7834.88372 3155.2326
## 781 7834.88372 3155.2326
## 782 7834.88372 3155.2326
## 783 7834.88372 3155.2326
## 784 7834.88372 3155.2326
## 785 7834.88372 3155.2326
## 786 7834.88372 3155.2326
## 787 7834.88372 3155.2326
## 788 7834.88372 3155.2326
## 789 7834.88372 3155.2326
## 790 7834.88372 3155.2326
## 791 7834.88372 3155.2326
## 792 7834.88372 3155.2326
## 793 1967.44186 6743.0233
## 794 1967.44186 6743.0233
## 795 1967.44186 6743.0233
## 796 1967.44186 6743.0233
## 797 1967.44186 6743.0233
## 798 1967.44186 6743.0233
## 799 1967.44186 6743.0233
## 800 1967.44186 6743.0233
## 801 1967.44186 6743.0233
## 802 1967.44186 6743.0233
## 803 1967.44186 6743.0233
## 804 1967.44186 6743.0233
## 805 1967.44186 6743.0233
## 806 1967.44186 6743.0233
## 807 1967.44186 6743.0233
## 808 1967.44186 6743.0233
## 809 1967.44186 6743.0233
## 810 1967.44186 6743.0233
## 811 1967.44186 6743.0233
## 812 1967.44186 6743.0233
## 813 1967.44186 6743.0233
## 814 1967.44186 6743.0233
## 815 1967.44186 6743.0233
## 816 1967.44186 6743.0233
## 817 218.02326 5661.6279
## 818 218.02326 5661.6279
## 819 218.02326 5661.6279
## 820 218.02326 5661.6279
## 821 218.02326 5661.6279
## 822 218.02326 5661.6279
## 823 218.02326 5661.6279
## 824 218.02326 5661.6279
## 825 218.02326 5661.6279
## 826 218.02326 5661.6279
## 827 218.02326 5661.6279
## 828 218.02326 5661.6279
## 829 218.02326 5661.6279
## 830 218.02326 5661.6279
## 831 218.02326 5661.6279
## 832 218.02326 5661.6279
## 833 218.02326 5661.6279
## 834 218.02326 5661.6279
## 835 218.02326 5661.6279
## 836 218.02326 5661.6279
## 837 218.02326 5661.6279
## 838 218.02326 5661.6279
## 839 218.02326 5661.6279
## 840 218.02326 5661.6279
## 841 0.00000 5293.6047
## 842 0.00000 5293.6047
## 843 0.00000 5293.6047
## 844 0.00000 5293.6047
## 845 0.00000 5293.6047
## 846 0.00000 5293.6047
## 847 0.00000 5293.6047
## 848 0.00000 5293.6047
## 849 0.00000 5293.6047
## 850 0.00000 5293.6047
## 851 0.00000 5293.6047
## 852 0.00000 5293.6047
## 853 0.00000 5293.6047
## 854 0.00000 5293.6047
## 855 0.00000 5293.6047
## 856 0.00000 5293.6047
## 857 0.00000 5293.6047
## 858 0.00000 5293.6047
## 859 0.00000 5293.6047
## 860 0.00000 5293.6047
## 861 0.00000 5293.6047
## 862 0.00000 5293.6047
## 863 0.00000 5293.6047
## 864 0.00000 5293.6047
## 865 0.00000 3654.0698
## 866 0.00000 3654.0698
## 867 0.00000 3654.0698
## 868 0.00000 3654.0698
## 869 0.00000 3654.0698
## 870 0.00000 3654.0698
## 871 0.00000 3654.0698
## 872 0.00000 3654.0698
## 873 0.00000 3654.0698
## 874 0.00000 3654.0698
## 875 0.00000 3654.0698
## 876 0.00000 3654.0698
## 877 0.00000 3654.0698
## 878 0.00000 3654.0698
## 879 0.00000 3654.0698
## 880 0.00000 3654.0698
## 881 0.00000 3654.0698
## 882 0.00000 3654.0698
## 883 0.00000 3654.0698
## 884 0.00000 3654.0698
## 885 0.00000 3654.0698
## 886 0.00000 3654.0698
## 887 0.00000 3654.0698
## 888 0.00000 3654.0698
## 889 0.00000 2581.3953
## 890 0.00000 2581.3953
## 891 0.00000 2581.3953
## 892 0.00000 2581.3953
## 893 0.00000 2581.3953
## 894 0.00000 2581.3953
## 895 0.00000 2581.3953
## 896 0.00000 2581.3953
## 897 0.00000 2581.3953
## 898 0.00000 2581.3953
## 899 0.00000 2581.3953
## 900 0.00000 2581.3953
## 901 0.00000 2581.3953
## 902 0.00000 2581.3953
## 903 0.00000 2581.3953
## 904 0.00000 2581.3953
## 905 0.00000 2581.3953
## 906 0.00000 2581.3953
## 907 0.00000 2581.3953
## 908 0.00000 2581.3953
## 909 0.00000 2581.3953
## 910 0.00000 2581.3953
## 911 0.00000 2581.3953
## 912 0.00000 2581.3953
## 913 1609.01163 1046.5116
## 914 1609.01163 1046.5116
## 915 1609.01163 1046.5116
## 916 1609.01163 1046.5116
## 917 1609.01163 1046.5116
## 918 1609.01163 1046.5116
## 919 1609.01163 1046.5116
## 920 1609.01163 1046.5116
## 921 1609.01163 1046.5116
## 922 1609.01163 1046.5116
## 923 1609.01163 1046.5116
## 924 1609.01163 1046.5116
## 925 1609.01163 1046.5116
## 926 1609.01163 1046.5116
## 927 1609.01163 1046.5116
## 928 1609.01163 1046.5116
## 929 1609.01163 1046.5116
## 930 1609.01163 1046.5116
## 931 1609.01163 1046.5116
## 932 1609.01163 1046.5116
## 933 1609.01163 1046.5116
## 934 1609.01163 1046.5116
## 935 1609.01163 1046.5116
## 936 1609.01163 1046.5116
## 937 837.20930 1090.1163
## 938 837.20930 1090.1163
## 939 837.20930 1090.1163
## 940 837.20930 1090.1163
## 941 837.20930 1090.1163
## 942 837.20930 1090.1163
## 943 837.20930 1090.1163
## 944 837.20930 1090.1163
## 945 837.20930 1090.1163
## 946 837.20930 1090.1163
## 947 837.20930 1090.1163
## 948 837.20930 1090.1163
## 949 837.20930 1090.1163
## 950 837.20930 1090.1163
## 951 837.20930 1090.1163
## 952 837.20930 1090.1163
## 953 837.20930 1090.1163
## 954 837.20930 1090.1163
## 955 837.20930 1090.1163
## 956 837.20930 1090.1163
## 957 837.20930 1090.1163
## 958 837.20930 1090.1163
## 959 837.20930 1090.1163
## 960 837.20930 1090.1163
## 961 7834.88372 3155.2326
## 962 7834.88372 3155.2326
## 963 7834.88372 3155.2326
## 964 7834.88372 3155.2326
## 965 7834.88372 3155.2326
## 966 7834.88372 3155.2326
## 967 7834.88372 3155.2326
## 968 7834.88372 3155.2326
## 969 7834.88372 3155.2326
## 970 7834.88372 3155.2326
## 971 7834.88372 3155.2326
## 972 7834.88372 3155.2326
## 973 7834.88372 3155.2326
## 974 7834.88372 3155.2326
## 975 7834.88372 3155.2326
## 976 7834.88372 3155.2326
## 977 7834.88372 3155.2326
## 978 7834.88372 3155.2326
## 979 7834.88372 3155.2326
## 980 7834.88372 3155.2326
## 981 7834.88372 3155.2326
## 982 7834.88372 3155.2326
## 983 7834.88372 3155.2326
## 984 7834.88372 3155.2326
## 985 2256.97674 3804.0698
## 986 2256.97674 3804.0698
## 987 2256.97674 3804.0698
## 988 2256.97674 3804.0698
## 989 2256.97674 3804.0698
## 990 2256.97674 3804.0698
## 991 2256.97674 3804.0698
## 992 2256.97674 3804.0698
## 993 2256.97674 3804.0698
## 994 2256.97674 3804.0698
## 995 2256.97674 3804.0698
## 996 2256.97674 3804.0698
## 997 2256.97674 3804.0698
## 998 2256.97674 3804.0698
## 999 2256.97674 3804.0698
## 1000 2256.97674 3804.0698
## 1001 2256.97674 3804.0698
## 1002 2256.97674 3804.0698
## 1003 2256.97674 3804.0698
## 1004 2256.97674 3804.0698
## 1005 2256.97674 3804.0698
## 1006 2256.97674 3804.0698
## 1007 2256.97674 3804.0698
## 1008 2256.97674 3804.0698
## 1009 1773.83721 1559.3023
## 1010 1773.83721 1559.3023
## 1011 1773.83721 1559.3023
## 1012 1773.83721 1559.3023
## 1013 1773.83721 1559.3023
## 1014 1773.83721 1559.3023
## 1015 1773.83721 1559.3023
## 1016 1773.83721 1559.3023
## 1017 1773.83721 1559.3023
## 1018 1773.83721 1559.3023
## 1019 1773.83721 1559.3023
## 1020 1773.83721 1559.3023
## 1021 1773.83721 1559.3023
## 1022 1773.83721 1559.3023
## 1023 1773.83721 1559.3023
## 1024 1773.83721 1559.3023
## 1025 1773.83721 1559.3023
## 1026 1773.83721 1559.3023
## 1027 1773.83721 1559.3023
## 1028 1773.83721 1559.3023
## 1029 1773.83721 1559.3023
## 1030 1773.83721 1559.3023
## 1031 1773.83721 1559.3023
## 1032 1773.83721 1559.3023
## 1033 0.00000 5644.1860
## 1034 0.00000 5644.1860
## 1035 0.00000 5644.1860
## 1036 0.00000 5644.1860
## 1037 0.00000 5644.1860
## 1038 0.00000 5644.1860
## 1039 0.00000 5644.1860
## 1040 0.00000 5644.1860
## 1041 0.00000 5644.1860
## 1042 0.00000 5644.1860
## 1043 0.00000 5644.1860
## 1044 0.00000 5644.1860
## 1045 0.00000 5644.1860
## 1046 0.00000 5644.1860
## 1047 0.00000 5644.1860
## 1048 0.00000 5644.1860
## 1049 0.00000 5644.1860
## 1050 0.00000 5644.1860
## 1051 0.00000 5644.1860
## 1052 0.00000 5644.1860
## 1053 0.00000 5644.1860
## 1054 0.00000 5644.1860
## 1055 0.00000 5644.1860
## 1056 0.00000 5644.1860
## 1057 0.00000 4822.6744
## 1058 0.00000 4822.6744
## 1059 0.00000 4822.6744
## 1060 0.00000 4822.6744
## 1061 0.00000 4822.6744
## 1062 0.00000 4822.6744
## 1063 0.00000 4822.6744
## 1064 0.00000 4822.6744
## 1065 0.00000 4822.6744
## 1066 0.00000 4822.6744
## 1067 0.00000 4822.6744
## 1068 0.00000 4822.6744
## 1069 0.00000 4822.6744
## 1070 0.00000 4822.6744
## 1071 0.00000 4822.6744
## 1072 0.00000 4822.6744
## 1073 0.00000 4822.6744
## 1074 0.00000 4822.6744
## 1075 0.00000 4822.6744
## 1076 0.00000 4822.6744
## 1077 0.00000 4822.6744
## 1078 0.00000 4822.6744
## 1079 0.00000 4822.6744
## 1080 0.00000 4822.6744
## 1081 0.00000 2956.3953
## 1082 0.00000 2956.3953
## 1083 0.00000 2956.3953
## 1084 0.00000 2956.3953
## 1085 0.00000 2956.3953
## 1086 0.00000 2956.3953
## 1087 0.00000 2956.3953
## 1088 0.00000 2956.3953
## 1089 0.00000 2956.3953
## 1090 0.00000 2956.3953
## 1091 0.00000 2956.3953
## 1092 0.00000 2956.3953
## 1093 0.00000 2956.3953
## 1094 0.00000 2956.3953
## 1095 0.00000 2956.3953
## 1096 0.00000 2956.3953
## 1097 0.00000 2956.3953
## 1098 0.00000 2956.3953
## 1099 0.00000 2956.3953
## 1100 0.00000 2956.3953
## 1101 0.00000 2956.3953
## 1102 0.00000 2956.3953
## 1103 0.00000 2956.3953
## 1104 0.00000 2956.3953
## 1105 0.00000 662.7907
## 1106 0.00000 662.7907
## 1107 0.00000 662.7907
## 1108 0.00000 662.7907
## 1109 0.00000 662.7907
## 1110 0.00000 662.7907
## 1111 0.00000 662.7907
## 1112 0.00000 662.7907
## 1113 0.00000 662.7907
## 1114 0.00000 662.7907
## 1115 0.00000 662.7907
## 1116 0.00000 662.7907
## 1117 0.00000 662.7907
## 1118 0.00000 662.7907
## 1119 0.00000 662.7907
## 1120 0.00000 662.7907
## 1121 0.00000 662.7907
## 1122 0.00000 662.7907
## 1123 0.00000 662.7907
## 1124 0.00000 662.7907
## 1125 0.00000 662.7907
## 1126 0.00000 662.7907
## 1127 0.00000 662.7907
## 1128 0.00000 662.7907
## 1129 1090.11628 2428.7791
## 1130 1090.11628 2428.7791
## 1131 1090.11628 2428.7791
## 1132 1090.11628 2428.7791
## 1133 1090.11628 2428.7791
## 1134 1090.11628 2428.7791
## 1135 1090.11628 2428.7791
## 1136 1090.11628 2428.7791
## 1137 1090.11628 2428.7791
## 1138 1090.11628 2428.7791
## 1139 1090.11628 2428.7791
## 1140 1090.11628 2428.7791
## 1141 1090.11628 2428.7791
## 1142 1090.11628 2428.7791
## 1143 1090.11628 2428.7791
## 1144 1090.11628 2428.7791
## 1145 1090.11628 2428.7791
## 1146 1090.11628 2428.7791
## 1147 1090.11628 2428.7791
## 1148 1090.11628 2428.7791
## 1149 1090.11628 2428.7791
## 1150 1090.11628 2428.7791
## 1151 1090.11628 2428.7791
## 1152 1090.11628 2428.7791
## 1153 7834.88372 3155.2326
## 1154 7834.88372 3155.2326
## 1155 7834.88372 3155.2326
## 1156 7834.88372 3155.2326
## 1157 7834.88372 3155.2326
## 1158 7834.88372 3155.2326
## 1159 7834.88372 3155.2326
## 1160 7834.88372 3155.2326
## 1161 7834.88372 3155.2326
## 1162 7834.88372 3155.2326
## 1163 7834.88372 3155.2326
## 1164 7834.88372 3155.2326
## 1165 7834.88372 3155.2326
## 1166 7834.88372 3155.2326
## 1167 7834.88372 3155.2326
## 1168 7834.88372 3155.2326
## 1169 7834.88372 3155.2326
## 1170 7834.88372 3155.2326
## 1171 7834.88372 3155.2326
## 1172 7834.88372 3155.2326
## 1173 7834.88372 3155.2326
## 1174 7834.88372 3155.2326
## 1175 7834.88372 3155.2326
## 1176 7834.88372 3155.2326
## 1177 1140.69767 7632.5581
## 1178 1140.69767 7632.5581
## 1179 1140.69767 7632.5581
## 1180 1140.69767 7632.5581
## 1181 1140.69767 7632.5581
## 1182 1140.69767 7632.5581
## 1183 1140.69767 7632.5581
## 1184 1140.69767 7632.5581
## 1185 1140.69767 7632.5581
## 1186 1140.69767 7632.5581
## 1187 1140.69767 7632.5581
## 1188 1140.69767 7632.5581
## 1189 1140.69767 7632.5581
## 1190 1140.69767 7632.5581
## 1191 1140.69767 7632.5581
## 1192 1140.69767 7632.5581
## 1193 1140.69767 7632.5581
## 1194 1140.69767 7632.5581
## 1195 1140.69767 7632.5581
## 1196 1140.69767 7632.5581
## 1197 1140.69767 7632.5581
## 1198 1140.69767 7632.5581
## 1199 1140.69767 7632.5581
## 1200 1140.69767 7632.5581
## 1201 1773.83721 3312.2093
## 1202 1773.83721 3312.2093
## 1203 1773.83721 3312.2093
## 1204 1773.83721 3312.2093
## 1205 1773.83721 3312.2093
## 1206 1773.83721 3312.2093
## 1207 1773.83721 3312.2093
## 1208 1773.83721 3312.2093
## 1209 1773.83721 3312.2093
## 1210 1773.83721 3312.2093
## 1211 1773.83721 3312.2093
## 1212 1773.83721 3312.2093
## 1213 1773.83721 3312.2093
## 1214 1773.83721 3312.2093
## 1215 1773.83721 3312.2093
## 1216 1773.83721 3312.2093
## 1217 1773.83721 3312.2093
## 1218 1773.83721 3312.2093
## 1219 1773.83721 3312.2093
## 1220 1773.83721 3312.2093
## 1221 1773.83721 3312.2093
## 1222 1773.83721 3312.2093
## 1223 1773.83721 3312.2093
## 1224 1773.83721 3312.2093
## 1225 1438.95349 5548.2558
## 1226 1438.95349 5548.2558
## 1227 1438.95349 5548.2558
## 1228 1438.95349 5548.2558
## 1229 1438.95349 5548.2558
## 1230 1438.95349 5548.2558
## 1231 1438.95349 5548.2558
## 1232 1438.95349 5548.2558
## 1233 1438.95349 5548.2558
## 1234 1438.95349 5548.2558
## 1235 1438.95349 5548.2558
## 1236 1438.95349 5548.2558
## 1237 1438.95349 5548.2558
## 1238 1438.95349 5548.2558
## 1239 1438.95349 5548.2558
## 1240 1438.95349 5548.2558
## 1241 1438.95349 5548.2558
## 1242 1438.95349 5548.2558
## 1243 1438.95349 5548.2558
## 1244 1438.95349 5548.2558
## 1245 1438.95349 5548.2558
## 1246 1438.95349 5548.2558
## 1247 1438.95349 5548.2558
## 1248 1438.95349 5548.2558
## 1249 0.00000 4116.2791
## 1250 0.00000 4116.2791
## 1251 0.00000 4116.2791
## 1252 0.00000 4116.2791
## 1253 0.00000 4116.2791
## 1254 0.00000 4116.2791
## 1255 0.00000 4116.2791
## 1256 0.00000 4116.2791
## 1257 0.00000 4116.2791
## 1258 0.00000 4116.2791
## 1259 0.00000 4116.2791
## 1260 0.00000 4116.2791
## 1261 0.00000 4116.2791
## 1262 0.00000 4116.2791
## 1263 0.00000 4116.2791
## 1264 0.00000 4116.2791
## 1265 0.00000 4116.2791
## 1266 0.00000 4116.2791
## 1267 0.00000 4116.2791
## 1268 0.00000 4116.2791
## 1269 0.00000 4116.2791
## 1270 0.00000 4116.2791
## 1271 0.00000 4116.2791
## 1272 0.00000 4116.2791
## 1273 0.00000 1456.3953
## 1274 0.00000 1456.3953
## 1275 0.00000 1456.3953
## 1276 0.00000 1456.3953
## 1277 0.00000 1456.3953
## 1278 0.00000 1456.3953
## 1279 0.00000 1456.3953
## 1280 0.00000 1456.3953
## 1281 0.00000 1456.3953
## 1282 0.00000 1456.3953
## 1283 0.00000 1456.3953
## 1284 0.00000 1456.3953
## 1285 0.00000 1456.3953
## 1286 0.00000 1456.3953
## 1287 0.00000 1456.3953
## 1288 0.00000 1456.3953
## 1289 0.00000 1456.3953
## 1290 0.00000 1456.3953
## 1291 0.00000 1456.3953
## 1292 0.00000 1456.3953
## 1293 0.00000 1456.3953
## 1294 0.00000 1456.3953
## 1295 0.00000 1456.3953
## 1296 0.00000 1456.3953
## 1297 1312.50000 1059.5930
## 1298 1312.50000 1059.5930
## 1299 1312.50000 1059.5930
## 1300 1312.50000 1059.5930
## 1301 1312.50000 1059.5930
## 1302 1312.50000 1059.5930
## 1303 1312.50000 1059.5930
## 1304 1312.50000 1059.5930
## 1305 1312.50000 1059.5930
## 1306 1312.50000 1059.5930
## 1307 1312.50000 1059.5930
## 1308 1312.50000 1059.5930
## 1309 1312.50000 1059.5930
## 1310 1312.50000 1059.5930
## 1311 1312.50000 1059.5930
## 1312 1312.50000 1059.5930
## 1313 1312.50000 1059.5930
## 1314 1312.50000 1059.5930
## 1315 1312.50000 1059.5930
## 1316 1312.50000 1059.5930
## 1317 1312.50000 1059.5930
## 1318 1312.50000 1059.5930
## 1319 1312.50000 1059.5930
## 1320 1312.50000 1059.5930
## 1321 1962.20930 1360.4651
## 1322 1962.20930 1360.4651
## 1323 1962.20930 1360.4651
## 1324 1962.20930 1360.4651
## 1325 1962.20930 1360.4651
## 1326 1962.20930 1360.4651
## 1327 1962.20930 1360.4651
## 1328 1962.20930 1360.4651
## 1329 1962.20930 1360.4651
## 1330 1962.20930 1360.4651
## 1331 1962.20930 1360.4651
## 1332 1962.20930 1360.4651
## 1333 1962.20930 1360.4651
## 1334 1962.20930 1360.4651
## 1335 1962.20930 1360.4651
## 1336 1962.20930 1360.4651
## 1337 1962.20930 1360.4651
## 1338 1962.20930 1360.4651
## 1339 1962.20930 1360.4651
## 1340 1962.20930 1360.4651
## 1341 1962.20930 1360.4651
## 1342 1962.20930 1360.4651
## 1343 1962.20930 1360.4651
## 1344 1962.20930 1360.4651
## 1345 7834.88372 3155.2326
## 1346 7834.88372 3155.2326
## 1347 7834.88372 3155.2326
## 1348 7834.88372 3155.2326
## 1349 7834.88372 3155.2326
## 1350 7834.88372 3155.2326
## 1351 7834.88372 3155.2326
## 1352 7834.88372 3155.2326
## 1353 7834.88372 3155.2326
## 1354 7834.88372 3155.2326
## 1355 7834.88372 3155.2326
## 1356 7834.88372 3155.2326
## 1357 7834.88372 3155.2326
## 1358 7834.88372 3155.2326
## 1359 7834.88372 3155.2326
## 1360 7834.88372 3155.2326
## 1361 7834.88372 3155.2326
## 1362 7834.88372 3155.2326
## 1363 7834.88372 3155.2326
## 1364 7834.88372 3155.2326
## 1365 7834.88372 3155.2326
## 1366 7834.88372 3155.2326
## 1367 7834.88372 3155.2326
## 1368 7834.88372 3155.2326
## 1369 1463.37209 1510.4651
## 1370 1463.37209 1510.4651
## 1371 1463.37209 1510.4651
## 1372 1463.37209 1510.4651
## 1373 1463.37209 1510.4651
## 1374 1463.37209 1510.4651
## 1375 1463.37209 1510.4651
## 1376 1463.37209 1510.4651
## 1377 1463.37209 1510.4651
## 1378 1463.37209 1510.4651
## 1379 1463.37209 1510.4651
## 1380 1463.37209 1510.4651
## 1381 1463.37209 1510.4651
## 1382 1463.37209 1510.4651
## 1383 1463.37209 1510.4651
## 1384 1463.37209 1510.4651
## 1385 1463.37209 1510.4651
## 1386 1463.37209 1510.4651
## 1387 1463.37209 1510.4651
## 1388 1463.37209 1510.4651
## 1389 1463.37209 1510.4651
## 1390 1463.37209 1510.4651
## 1391 1463.37209 1510.4651
## 1392 1463.37209 1510.4651
## 1393 1773.83721 6826.7442
## 1394 1773.83721 6826.7442
## 1395 1773.83721 6826.7442
## 1396 1773.83721 6826.7442
## 1397 1773.83721 6826.7442
## 1398 1773.83721 6826.7442
## 1399 1773.83721 6826.7442
## 1400 1773.83721 6826.7442
## 1401 1773.83721 6826.7442
## 1402 1773.83721 6826.7442
## 1403 1773.83721 6826.7442
## 1404 1773.83721 6826.7442
## 1405 1773.83721 6826.7442
## 1406 1773.83721 6826.7442
## 1407 1773.83721 6826.7442
## 1408 1773.83721 6826.7442
## 1409 1773.83721 6826.7442
## 1410 1773.83721 6826.7442
## 1411 1773.83721 6826.7442
## 1412 1773.83721 6826.7442
## 1413 1773.83721 6826.7442
## 1414 1773.83721 6826.7442
## 1415 1773.83721 6826.7442
## 1416 1773.83721 6826.7442
## 1417 837.20930 4013.3721
## 1418 837.20930 4013.3721
## 1419 837.20930 4013.3721
## 1420 837.20930 4013.3721
## 1421 837.20930 4013.3721
## 1422 837.20930 4013.3721
## 1423 837.20930 4013.3721
## 1424 837.20930 4013.3721
## 1425 837.20930 4013.3721
## 1426 837.20930 4013.3721
## 1427 837.20930 4013.3721
## 1428 837.20930 4013.3721
## 1429 837.20930 4013.3721
## 1430 837.20930 4013.3721
## 1431 837.20930 4013.3721
## 1432 837.20930 4013.3721
## 1433 837.20930 4013.3721
## 1434 837.20930 4013.3721
## 1435 837.20930 4013.3721
## 1436 837.20930 4013.3721
## 1437 837.20930 4013.3721
## 1438 837.20930 4013.3721
## 1439 837.20930 4013.3721
## 1440 837.20930 4013.3721
## 1441 0.00000 1718.0233
## 1442 0.00000 1718.0233
## 1443 0.00000 1718.0233
## 1444 0.00000 1718.0233
## 1445 0.00000 1718.0233
## 1446 0.00000 1718.0233
## 1447 0.00000 1718.0233
## 1448 0.00000 1718.0233
## 1449 0.00000 1718.0233
## 1450 0.00000 1718.0233
## 1451 0.00000 1718.0233
## 1452 0.00000 1718.0233
## 1453 0.00000 1718.0233
## 1454 0.00000 1718.0233
## 1455 0.00000 1718.0233
## 1456 0.00000 1718.0233
## 1457 0.00000 1718.0233
## 1458 0.00000 1718.0233
## 1459 0.00000 1718.0233
## 1460 0.00000 1718.0233
## 1461 0.00000 1718.0233
## 1462 0.00000 1718.0233
## 1463 0.00000 1718.0233
## 1464 0.00000 1718.0233
## 1465 0.00000 383.7209
## 1466 0.00000 383.7209
## 1467 0.00000 383.7209
## 1468 0.00000 383.7209
## 1469 0.00000 383.7209
## 1470 0.00000 383.7209
## 1471 0.00000 383.7209
## 1472 0.00000 383.7209
## 1473 0.00000 383.7209
## 1474 0.00000 383.7209
## 1475 0.00000 383.7209
## 1476 0.00000 383.7209
## 1477 0.00000 383.7209
## 1478 0.00000 383.7209
## 1479 0.00000 383.7209
## 1480 0.00000 383.7209
## 1481 0.00000 383.7209
## 1482 0.00000 383.7209
## 1483 0.00000 383.7209
## 1484 0.00000 383.7209
## 1485 0.00000 383.7209
## 1486 0.00000 383.7209
## 1487 0.00000 383.7209
## 1488 0.00000 383.7209
## 1489 859.01163 0.0000
## 1490 859.01163 0.0000
## 1491 859.01163 0.0000
## 1492 859.01163 0.0000
## 1493 859.01163 0.0000
## 1494 859.01163 0.0000
## 1495 859.01163 0.0000
## 1496 859.01163 0.0000
## 1497 859.01163 0.0000
## 1498 859.01163 0.0000
## 1499 859.01163 0.0000
## 1500 859.01163 0.0000
## 1501 859.01163 0.0000
## 1502 859.01163 0.0000
## 1503 859.01163 0.0000
## 1504 859.01163 0.0000
## 1505 859.01163 0.0000
## 1506 859.01163 0.0000
## 1507 859.01163 0.0000
## 1508 859.01163 0.0000
## 1509 859.01163 0.0000
## 1510 859.01163 0.0000
## 1511 859.01163 0.0000
## 1512 859.01163 0.0000
## 1513 1090.11628 4469.4767
## 1514 1090.11628 4469.4767
## 1515 1090.11628 4469.4767
## 1516 1090.11628 4469.4767
## 1517 1090.11628 4469.4767
## 1518 1090.11628 4469.4767
## 1519 1090.11628 4469.4767
## 1520 1090.11628 4469.4767
## 1521 1090.11628 4469.4767
## 1522 1090.11628 4469.4767
## 1523 1090.11628 4469.4767
## 1524 1090.11628 4469.4767
## 1525 1090.11628 4469.4767
## 1526 1090.11628 4469.4767
## 1527 1090.11628 4469.4767
## 1528 1090.11628 4469.4767
## 1529 1090.11628 4469.4767
## 1530 1090.11628 4469.4767
## 1531 1090.11628 4469.4767
## 1532 1090.11628 4469.4767
## 1533 1090.11628 4469.4767
## 1534 1090.11628 4469.4767
## 1535 1090.11628 4469.4767
## 1536 1090.11628 4469.4767
## 1537 7834.88372 3155.2326
## 1538 7834.88372 3155.2326
## 1539 7834.88372 3155.2326
## 1540 7834.88372 3155.2326
## 1541 7834.88372 3155.2326
## 1542 7834.88372 3155.2326
## 1543 7834.88372 3155.2326
## 1544 7834.88372 3155.2326
## 1545 7834.88372 3155.2326
## 1546 7834.88372 3155.2326
## 1547 7834.88372 3155.2326
## 1548 7834.88372 3155.2326
## 1549 7834.88372 3155.2326
## 1550 7834.88372 3155.2326
## 1551 7834.88372 3155.2326
## 1552 7834.88372 3155.2326
## 1553 7834.88372 3155.2326
## 1554 7834.88372 3155.2326
## 1555 7834.88372 3155.2326
## 1556 7834.88372 3155.2326
## 1557 7834.88372 3155.2326
## 1558 7834.88372 3155.2326
## 1559 7834.88372 3155.2326
## 1560 7834.88372 3155.2326
## 1561 76.74419 1737.2093
## 1562 76.74419 1737.2093
## 1563 76.74419 1737.2093
## 1564 76.74419 1737.2093
## 1565 76.74419 1737.2093
## 1566 76.74419 1737.2093
## 1567 76.74419 1737.2093
## 1568 76.74419 1737.2093
## 1569 76.74419 1737.2093
## 1570 76.74419 1737.2093
## 1571 76.74419 1737.2093
## 1572 76.74419 1737.2093
## 1573 76.74419 1737.2093
## 1574 76.74419 1737.2093
## 1575 76.74419 1737.2093
## 1576 76.74419 1737.2093
## 1577 76.74419 1737.2093
## 1578 76.74419 1737.2093
## 1579 76.74419 1737.2093
## 1580 76.74419 1737.2093
## 1581 76.74419 1737.2093
## 1582 76.74419 1737.2093
## 1583 76.74419 1737.2093
## 1584 76.74419 1737.2093
## 1585 1773.83721 8475.0000
## 1586 1773.83721 8475.0000
## 1587 1773.83721 8475.0000
## 1588 1773.83721 8475.0000
## 1589 1773.83721 8475.0000
## 1590 1773.83721 8475.0000
## 1591 1773.83721 8475.0000
## 1592 1773.83721 8475.0000
## 1593 1773.83721 8475.0000
## 1594 1773.83721 8475.0000
## 1595 1773.83721 8475.0000
## 1596 1773.83721 8475.0000
## 1597 1773.83721 8475.0000
## 1598 1773.83721 8475.0000
## 1599 1773.83721 8475.0000
## 1600 1773.83721 8475.0000
## 1601 1773.83721 8475.0000
## 1602 1773.83721 8475.0000
## 1603 1773.83721 8475.0000
## 1604 1773.83721 8475.0000
## 1605 1773.83721 8475.0000
## 1606 1773.83721 8475.0000
## 1607 1773.83721 8475.0000
## 1608 1773.83721 8475.0000
## 1609 0.00000 1650.0000
## 1610 0.00000 1650.0000
## 1611 0.00000 1650.0000
## 1612 0.00000 1650.0000
## 1613 0.00000 1650.0000
## 1614 0.00000 1650.0000
## 1615 0.00000 1650.0000
## 1616 0.00000 1650.0000
## 1617 0.00000 1650.0000
## 1618 0.00000 1650.0000
## 1619 0.00000 1650.0000
## 1620 0.00000 1650.0000
## 1621 0.00000 1650.0000
## 1622 0.00000 1650.0000
## 1623 0.00000 1650.0000
## 1624 0.00000 1650.0000
## 1625 0.00000 1650.0000
## 1626 0.00000 1650.0000
## 1627 0.00000 1650.0000
## 1628 0.00000 1650.0000
## 1629 0.00000 1650.0000
## 1630 0.00000 1650.0000
## 1631 0.00000 1650.0000
## 1632 0.00000 1650.0000
## 1633 287.79070 5363.3721
## 1634 287.79070 5363.3721
## 1635 287.79070 5363.3721
## 1636 287.79070 5363.3721
## 1637 287.79070 5363.3721
## 1638 287.79070 5363.3721
## 1639 287.79070 5363.3721
## 1640 287.79070 5363.3721
## 1641 287.79070 5363.3721
## 1642 287.79070 5363.3721
## 1643 287.79070 5363.3721
## 1644 287.79070 5363.3721
## 1645 287.79070 5363.3721
## 1646 287.79070 5363.3721
## 1647 287.79070 5363.3721
## 1648 287.79070 5363.3721
## 1649 287.79070 5363.3721
## 1650 287.79070 5363.3721
## 1651 287.79070 5363.3721
## 1652 287.79070 5363.3721
## 1653 287.79070 5363.3721
## 1654 287.79070 5363.3721
## 1655 287.79070 5363.3721
## 1656 287.79070 5363.3721
## 1657 1090.11628 0.0000
## 1658 1090.11628 0.0000
## 1659 1090.11628 0.0000
## 1660 1090.11628 0.0000
## 1661 1090.11628 0.0000
## 1662 1090.11628 0.0000
## 1663 1090.11628 0.0000
## 1664 1090.11628 0.0000
## 1665 1090.11628 0.0000
## 1666 1090.11628 0.0000
## 1667 1090.11628 0.0000
## 1668 1090.11628 0.0000
## 1669 1090.11628 0.0000
## 1670 1090.11628 0.0000
## 1671 1090.11628 0.0000
## 1672 1090.11628 0.0000
## 1673 1090.11628 0.0000
## 1674 1090.11628 0.0000
## 1675 1090.11628 0.0000
## 1676 1090.11628 0.0000
## 1677 1090.11628 0.0000
## 1678 1090.11628 0.0000
## 1679 1090.11628 0.0000
## 1680 1090.11628 0.0000
## 1681 505.81395 1369.1860
## 1682 505.81395 1369.1860
## 1683 505.81395 1369.1860
## 1684 505.81395 1369.1860
## 1685 505.81395 1369.1860
## 1686 505.81395 1369.1860
## 1687 505.81395 1369.1860
## 1688 505.81395 1369.1860
## 1689 505.81395 1369.1860
## 1690 505.81395 1369.1860
## 1691 505.81395 1369.1860
## 1692 505.81395 1369.1860
## 1693 505.81395 1369.1860
## 1694 505.81395 1369.1860
## 1695 505.81395 1369.1860
## 1696 505.81395 1369.1860
## 1697 505.81395 1369.1860
## 1698 505.81395 1369.1860
## 1699 505.81395 1369.1860
## 1700 505.81395 1369.1860
## 1701 505.81395 1369.1860
## 1702 505.81395 1369.1860
## 1703 505.81395 1369.1860
## 1704 505.81395 1369.1860
## 1705 0.00000 170.0581
## 1706 0.00000 170.0581
## 1707 0.00000 170.0581
## 1708 0.00000 170.0581
## 1709 0.00000 170.0581
## 1710 0.00000 170.0581
## 1711 0.00000 170.0581
## 1712 0.00000 170.0581
## 1713 0.00000 170.0581
## 1714 0.00000 170.0581
## 1715 0.00000 170.0581
## 1716 0.00000 170.0581
## 1717 0.00000 170.0581
## 1718 0.00000 170.0581
## 1719 0.00000 170.0581
## 1720 0.00000 170.0581
## 1721 0.00000 170.0581
## 1722 0.00000 170.0581
## 1723 0.00000 170.0581
## 1724 0.00000 170.0581
## 1725 0.00000 170.0581
## 1726 0.00000 170.0581
## 1727 0.00000 170.0581
## 1728 0.00000 170.0581
## 1729 7834.88372 3155.2326
## 1730 7834.88372 3155.2326
## 1731 7834.88372 3155.2326
## 1732 7834.88372 3155.2326
## 1733 7834.88372 3155.2326
## 1734 7834.88372 3155.2326
## 1735 7834.88372 3155.2326
## 1736 7834.88372 3155.2326
## 1737 7834.88372 3155.2326
## 1738 7834.88372 3155.2326
## 1739 7834.88372 3155.2326
## 1740 7834.88372 3155.2326
## 1741 7834.88372 3155.2326
## 1742 7834.88372 3155.2326
## 1743 7834.88372 3155.2326
## 1744 7834.88372 3155.2326
## 1745 7834.88372 3155.2326
## 1746 7834.88372 3155.2326
## 1747 7834.88372 3155.2326
## 1748 7834.88372 3155.2326
## 1749 7834.88372 3155.2326
## 1750 7834.88372 3155.2326
## 1751 7834.88372 3155.2326
## 1752 7834.88372 3155.2326
## 1753 1166.86047 6062.7907
## 1754 1166.86047 6062.7907
## 1755 1166.86047 6062.7907
## 1756 1166.86047 6062.7907
## 1757 1166.86047 6062.7907
## 1758 1166.86047 6062.7907
## 1759 1166.86047 6062.7907
## 1760 1166.86047 6062.7907
## 1761 1166.86047 6062.7907
## 1762 1166.86047 6062.7907
## 1763 1166.86047 6062.7907
## 1764 1166.86047 6062.7907
## 1765 1166.86047 6062.7907
## 1766 1166.86047 6062.7907
## 1767 1166.86047 6062.7907
## 1768 1166.86047 6062.7907
## 1769 1166.86047 6062.7907
## 1770 1166.86047 6062.7907
## 1771 1166.86047 6062.7907
## 1772 1166.86047 6062.7907
## 1773 1166.86047 6062.7907
## 1774 1166.86047 6062.7907
## 1775 1166.86047 6062.7907
## 1776 1166.86047 6062.7907
## 1777 1773.83721 5902.3256
## 1778 1773.83721 5902.3256
## 1779 1773.83721 5902.3256
## 1780 1773.83721 5902.3256
## 1781 1773.83721 5902.3256
## 1782 1773.83721 5902.3256
## 1783 1773.83721 5902.3256
## 1784 1773.83721 5902.3256
## 1785 1773.83721 5902.3256
## 1786 1773.83721 5902.3256
## 1787 1773.83721 5902.3256
## 1788 1773.83721 5902.3256
## 1789 1773.83721 5902.3256
## 1790 1773.83721 5902.3256
## 1791 1773.83721 5902.3256
## 1792 1773.83721 5902.3256
## 1793 1773.83721 5902.3256
## 1794 1773.83721 5902.3256
## 1795 1773.83721 5902.3256
## 1796 1773.83721 5902.3256
## 1797 1773.83721 5902.3256
## 1798 1773.83721 5902.3256
## 1799 1773.83721 5902.3256
## 1800 1773.83721 5902.3256
## 1801 0.00000 5853.4884
## 1802 0.00000 5853.4884
## 1803 0.00000 5853.4884
## 1804 0.00000 5853.4884
## 1805 0.00000 5853.4884
## 1806 0.00000 5853.4884
## 1807 0.00000 5853.4884
## 1808 0.00000 5853.4884
## 1809 0.00000 5853.4884
## 1810 0.00000 5853.4884
## 1811 0.00000 5853.4884
## 1812 0.00000 5853.4884
## 1813 0.00000 5853.4884
## 1814 0.00000 5853.4884
## 1815 0.00000 5853.4884
## 1816 0.00000 5853.4884
## 1817 0.00000 5853.4884
## 1818 0.00000 5853.4884
## 1819 0.00000 5853.4884
## 1820 0.00000 5853.4884
## 1821 0.00000 5853.4884
## 1822 0.00000 5853.4884
## 1823 0.00000 5853.4884
## 1824 0.00000 5853.4884
## 1825 0.00000 3235.4651
## 1826 0.00000 3235.4651
## 1827 0.00000 3235.4651
## 1828 0.00000 3235.4651
## 1829 0.00000 3235.4651
## 1830 0.00000 3235.4651
## 1831 0.00000 3235.4651
## 1832 0.00000 3235.4651
## 1833 0.00000 3235.4651
## 1834 0.00000 3235.4651
## 1835 0.00000 3235.4651
## 1836 0.00000 3235.4651
## 1837 0.00000 3235.4651
## 1838 0.00000 3235.4651
## 1839 0.00000 3235.4651
## 1840 0.00000 3235.4651
## 1841 0.00000 3235.4651
## 1842 0.00000 3235.4651
## 1843 0.00000 3235.4651
## 1844 0.00000 3235.4651
## 1845 0.00000 3235.4651
## 1846 0.00000 3235.4651
## 1847 0.00000 3235.4651
## 1848 0.00000 3235.4651
## 1849 0.00000 2581.3953
## 1850 0.00000 2581.3953
## 1851 0.00000 2581.3953
## 1852 0.00000 2581.3953
## 1853 0.00000 2581.3953
## 1854 0.00000 2581.3953
## 1855 0.00000 2581.3953
## 1856 0.00000 2581.3953
## 1857 0.00000 2581.3953
## 1858 0.00000 2581.3953
## 1859 0.00000 2581.3953
## 1860 0.00000 2581.3953
## 1861 0.00000 2581.3953
## 1862 0.00000 2581.3953
## 1863 0.00000 2581.3953
## 1864 0.00000 2581.3953
## 1865 0.00000 2581.3953
## 1866 0.00000 2581.3953
## 1867 0.00000 2581.3953
## 1868 0.00000 2581.3953
## 1869 0.00000 2581.3953
## 1870 0.00000 2581.3953
## 1871 0.00000 2581.3953
## 1872 0.00000 2581.3953
## 1873 1609.01163 1046.5116
## 1874 1609.01163 1046.5116
## 1875 1609.01163 1046.5116
## 1876 1609.01163 1046.5116
## 1877 1609.01163 1046.5116
## 1878 1609.01163 1046.5116
## 1879 1609.01163 1046.5116
## 1880 1609.01163 1046.5116
## 1881 1609.01163 1046.5116
## 1882 1609.01163 1046.5116
## 1883 1609.01163 1046.5116
## 1884 1609.01163 1046.5116
## 1885 1609.01163 1046.5116
## 1886 1609.01163 1046.5116
## 1887 1609.01163 1046.5116
## 1888 1609.01163 1046.5116
## 1889 1609.01163 1046.5116
## 1890 1609.01163 1046.5116
## 1891 1609.01163 1046.5116
## 1892 1609.01163 1046.5116
## 1893 1609.01163 1046.5116
## 1894 1609.01163 1046.5116
## 1895 1609.01163 1046.5116
## 1896 1609.01163 1046.5116
## 1897 837.20930 1090.1163
## 1898 837.20930 1090.1163
## 1899 837.20930 1090.1163
## 1900 837.20930 1090.1163
## 1901 837.20930 1090.1163
## 1902 837.20930 1090.1163
## 1903 837.20930 1090.1163
## 1904 837.20930 1090.1163
## 1905 837.20930 1090.1163
## 1906 837.20930 1090.1163
## 1907 837.20930 1090.1163
## 1908 837.20930 1090.1163
## 1909 837.20930 1090.1163
## 1910 837.20930 1090.1163
## 1911 837.20930 1090.1163
## 1912 837.20930 1090.1163
## 1913 837.20930 1090.1163
## 1914 837.20930 1090.1163
## 1915 837.20930 1090.1163
## 1916 837.20930 1090.1163
## 1917 837.20930 1090.1163
## 1918 837.20930 1090.1163
## 1919 837.20930 1090.1163
## 1920 837.20930 1090.1163
## 1921 7834.88372 3155.2326
## 1922 7834.88372 3155.2326
## 1923 7834.88372 3155.2326
## 1924 7834.88372 3155.2326
## 1925 7834.88372 3155.2326
## 1926 7834.88372 3155.2326
## 1927 7834.88372 3155.2326
## 1928 7834.88372 3155.2326
## 1929 7834.88372 3155.2326
## 1930 7834.88372 3155.2326
## 1931 7834.88372 3155.2326
## 1932 7834.88372 3155.2326
## 1933 7834.88372 3155.2326
## 1934 7834.88372 3155.2326
## 1935 7834.88372 3155.2326
## 1936 7834.88372 3155.2326
## 1937 7834.88372 3155.2326
## 1938 7834.88372 3155.2326
## 1939 7834.88372 3155.2326
## 1940 7834.88372 3155.2326
## 1941 7834.88372 3155.2326
## 1942 7834.88372 3155.2326
## 1943 7834.88372 3155.2326
## 1944 7834.88372 3155.2326
## 1945 2180.23256 3579.0698
## 1946 2180.23256 3579.0698
## 1947 2180.23256 3579.0698
## 1948 2180.23256 3579.0698
## 1949 2180.23256 3579.0698
## 1950 2180.23256 3579.0698
## 1951 2180.23256 3579.0698
## 1952 2180.23256 3579.0698
## 1953 2180.23256 3579.0698
## 1954 2180.23256 3579.0698
## 1955 2180.23256 3579.0698
## 1956 2180.23256 3579.0698
## 1957 2180.23256 3579.0698
## 1958 2180.23256 3579.0698
## 1959 2180.23256 3579.0698
## 1960 2180.23256 3579.0698
## 1961 2180.23256 3579.0698
## 1962 2180.23256 3579.0698
## 1963 2180.23256 3579.0698
## 1964 2180.23256 3579.0698
## 1965 2180.23256 3579.0698
## 1966 2180.23256 3579.0698
## 1967 2180.23256 3579.0698
## 1968 2180.23256 3579.0698
## 1969 0.00000 1381.3953
## 1970 0.00000 1381.3953
## 1971 0.00000 1381.3953
## 1972 0.00000 1381.3953
## 1973 0.00000 1381.3953
## 1974 0.00000 1381.3953
## 1975 0.00000 1381.3953
## 1976 0.00000 1381.3953
## 1977 0.00000 1381.3953
## 1978 0.00000 1381.3953
## 1979 0.00000 1381.3953
## 1980 0.00000 1381.3953
## 1981 0.00000 1381.3953
## 1982 0.00000 1381.3953
## 1983 0.00000 1381.3953
## 1984 0.00000 1381.3953
## 1985 0.00000 1381.3953
## 1986 0.00000 1381.3953
## 1987 0.00000 1381.3953
## 1988 0.00000 1381.3953
## 1989 0.00000 1381.3953
## 1990 0.00000 1381.3953
## 1991 0.00000 1381.3953
## 1992 0.00000 1381.3953
## 1993 0.00000 5084.3023
## 1994 0.00000 5084.3023
## 1995 0.00000 5084.3023
## 1996 0.00000 5084.3023
## 1997 0.00000 5084.3023
## 1998 0.00000 5084.3023
## 1999 0.00000 5084.3023
## 2000 0.00000 5084.3023
## 2001 0.00000 5084.3023
## 2002 0.00000 5084.3023
## 2003 0.00000 5084.3023
## 2004 0.00000 5084.3023
## 2005 0.00000 5084.3023
## 2006 0.00000 5084.3023
## 2007 0.00000 5084.3023
## 2008 0.00000 5084.3023
## 2009 0.00000 5084.3023
## 2010 0.00000 5084.3023
## 2011 0.00000 5084.3023
## 2012 0.00000 5084.3023
## 2013 0.00000 5084.3023
## 2014 0.00000 5084.3023
## 2015 0.00000 5084.3023
## 2016 0.00000 5084.3023
## 2017 650.58140 5040.6977
## 2018 650.58140 5040.6977
## 2019 650.58140 5040.6977
## 2020 650.58140 5040.6977
## 2021 650.58140 5040.6977
## 2022 650.58140 5040.6977
## 2023 650.58140 5040.6977
## 2024 650.58140 5040.6977
## 2025 650.58140 5040.6977
## 2026 650.58140 5040.6977
## 2027 650.58140 5040.6977
## 2028 650.58140 5040.6977
## 2029 650.58140 5040.6977
## 2030 650.58140 5040.6977
## 2031 650.58140 5040.6977
## 2032 650.58140 5040.6977
## 2033 650.58140 5040.6977
## 2034 650.58140 5040.6977
## 2035 650.58140 5040.6977
## 2036 650.58140 5040.6977
## 2037 650.58140 5040.6977
## 2038 650.58140 5040.6977
## 2039 650.58140 5040.6977
## 2040 650.58140 5040.6977
## 2041 0.00000 2956.3953
## 2042 0.00000 2956.3953
## 2043 0.00000 2956.3953
## 2044 0.00000 2956.3953
## 2045 0.00000 2956.3953
## 2046 0.00000 2956.3953
## 2047 0.00000 2956.3953
## 2048 0.00000 2956.3953
## 2049 0.00000 2956.3953
## 2050 0.00000 2956.3953
## 2051 0.00000 2956.3953
## 2052 0.00000 2956.3953
## 2053 0.00000 2956.3953
## 2054 0.00000 2956.3953
## 2055 0.00000 2956.3953
## 2056 0.00000 2956.3953
## 2057 0.00000 2956.3953
## 2058 0.00000 2956.3953
## 2059 0.00000 2956.3953
## 2060 0.00000 2956.3953
## 2061 0.00000 2956.3953
## 2062 0.00000 2956.3953
## 2063 0.00000 2956.3953
## 2064 0.00000 2956.3953
## 2065 0.00000 662.7907
## 2066 0.00000 662.7907
## 2067 0.00000 662.7907
## 2068 0.00000 662.7907
## 2069 0.00000 662.7907
## 2070 0.00000 662.7907
## 2071 0.00000 662.7907
## 2072 0.00000 662.7907
## 2073 0.00000 662.7907
## 2074 0.00000 662.7907
## 2075 0.00000 662.7907
## 2076 0.00000 662.7907
## 2077 0.00000 662.7907
## 2078 0.00000 662.7907
## 2079 0.00000 662.7907
## 2080 0.00000 662.7907
## 2081 0.00000 662.7907
## 2082 0.00000 662.7907
## 2083 0.00000 662.7907
## 2084 0.00000 662.7907
## 2085 0.00000 662.7907
## 2086 0.00000 662.7907
## 2087 0.00000 662.7907
## 2088 0.00000 662.7907
## 2089 1090.11628 2428.7791
## 2090 1090.11628 2428.7791
## 2091 1090.11628 2428.7791
## 2092 1090.11628 2428.7791
## 2093 1090.11628 2428.7791
## 2094 1090.11628 2428.7791
## 2095 1090.11628 2428.7791
## 2096 1090.11628 2428.7791
## 2097 1090.11628 2428.7791
## 2098 1090.11628 2428.7791
## 2099 1090.11628 2428.7791
## 2100 1090.11628 2428.7791
## 2101 1090.11628 2428.7791
## 2102 1090.11628 2428.7791
## 2103 1090.11628 2428.7791
## 2104 1090.11628 2428.7791
## 2105 1090.11628 2428.7791
## 2106 1090.11628 2428.7791
## 2107 1090.11628 2428.7791
## 2108 1090.11628 2428.7791
## 2109 1090.11628 2428.7791
## 2110 1090.11628 2428.7791
## 2111 1090.11628 2428.7791
## 2112 1090.11628 2428.7791
## 2113 7834.88372 3155.2326
## 2114 7834.88372 3155.2326
## 2115 7834.88372 3155.2326
## 2116 7834.88372 3155.2326
## 2117 7834.88372 3155.2326
## 2118 7834.88372 3155.2326
## 2119 7834.88372 3155.2326
## 2120 7834.88372 3155.2326
## 2121 7834.88372 3155.2326
## 2122 7834.88372 3155.2326
## 2123 7834.88372 3155.2326
## 2124 7834.88372 3155.2326
## 2125 7834.88372 3155.2326
## 2126 7834.88372 3155.2326
## 2127 7834.88372 3155.2326
## 2128 7834.88372 3155.2326
## 2129 7834.88372 3155.2326
## 2130 7834.88372 3155.2326
## 2131 7834.88372 3155.2326
## 2132 7834.88372 3155.2326
## 2133 7834.88372 3155.2326
## 2134 7834.88372 3155.2326
## 2135 7834.88372 3155.2326
## 2136 7834.88372 3155.2326
## 2137 1063.95349 7407.5581
## 2138 1063.95349 7407.5581
## 2139 1063.95349 7407.5581
## 2140 1063.95349 7407.5581
## 2141 1063.95349 7407.5581
## 2142 1063.95349 7407.5581
## 2143 1063.95349 7407.5581
## 2144 1063.95349 7407.5581
## 2145 1063.95349 7407.5581
## 2146 1063.95349 7407.5581
## 2147 1063.95349 7407.5581
## 2148 1063.95349 7407.5581
## 2149 1063.95349 7407.5581
## 2150 1063.95349 7407.5581
## 2151 1063.95349 7407.5581
## 2152 1063.95349 7407.5581
## 2153 1063.95349 7407.5581
## 2154 1063.95349 7407.5581
## 2155 1063.95349 7407.5581
## 2156 1063.95349 7407.5581
## 2157 1063.95349 7407.5581
## 2158 1063.95349 7407.5581
## 2159 1063.95349 7407.5581
## 2160 1063.95349 7407.5581
## 2161 0.00000 3134.3023
## 2162 0.00000 3134.3023
## 2163 0.00000 3134.3023
## 2164 0.00000 3134.3023
## 2165 0.00000 3134.3023
## 2166 0.00000 3134.3023
## 2167 0.00000 3134.3023
## 2168 0.00000 3134.3023
## 2169 0.00000 3134.3023
## 2170 0.00000 3134.3023
## 2171 0.00000 3134.3023
## 2172 0.00000 3134.3023
## 2173 0.00000 3134.3023
## 2174 0.00000 3134.3023
## 2175 0.00000 3134.3023
## 2176 0.00000 3134.3023
## 2177 0.00000 3134.3023
## 2178 0.00000 3134.3023
## 2179 0.00000 3134.3023
## 2180 0.00000 3134.3023
## 2181 0.00000 3134.3023
## 2182 0.00000 3134.3023
## 2183 0.00000 3134.3023
## 2184 0.00000 3134.3023
## 2185 1438.95349 4988.3721
## 2186 1438.95349 4988.3721
## 2187 1438.95349 4988.3721
## 2188 1438.95349 4988.3721
## 2189 1438.95349 4988.3721
## 2190 1438.95349 4988.3721
## 2191 1438.95349 4988.3721
## 2192 1438.95349 4988.3721
## 2193 1438.95349 4988.3721
## 2194 1438.95349 4988.3721
## 2195 1438.95349 4988.3721
## 2196 1438.95349 4988.3721
## 2197 1438.95349 4988.3721
## 2198 1438.95349 4988.3721
## 2199 1438.95349 4988.3721
## 2200 1438.95349 4988.3721
## 2201 1438.95349 4988.3721
## 2202 1438.95349 4988.3721
## 2203 1438.95349 4988.3721
## 2204 1438.95349 4988.3721
## 2205 1438.95349 4988.3721
## 2206 1438.95349 4988.3721
## 2207 1438.95349 4988.3721
## 2208 1438.95349 4988.3721
## 2209 650.58140 4334.3023
## 2210 650.58140 4334.3023
## 2211 650.58140 4334.3023
## 2212 650.58140 4334.3023
## 2213 650.58140 4334.3023
## 2214 650.58140 4334.3023
## 2215 650.58140 4334.3023
## 2216 650.58140 4334.3023
## 2217 650.58140 4334.3023
## 2218 650.58140 4334.3023
## 2219 650.58140 4334.3023
## 2220 650.58140 4334.3023
## 2221 650.58140 4334.3023
## 2222 650.58140 4334.3023
## 2223 650.58140 4334.3023
## 2224 650.58140 4334.3023
## 2225 650.58140 4334.3023
## 2226 650.58140 4334.3023
## 2227 650.58140 4334.3023
## 2228 650.58140 4334.3023
## 2229 650.58140 4334.3023
## 2230 650.58140 4334.3023
## 2231 650.58140 4334.3023
## 2232 650.58140 4334.3023
## 2233 0.00000 1456.3953
## 2234 0.00000 1456.3953
## 2235 0.00000 1456.3953
## 2236 0.00000 1456.3953
## 2237 0.00000 1456.3953
## 2238 0.00000 1456.3953
## 2239 0.00000 1456.3953
## 2240 0.00000 1456.3953
## 2241 0.00000 1456.3953
## 2242 0.00000 1456.3953
## 2243 0.00000 1456.3953
## 2244 0.00000 1456.3953
## 2245 0.00000 1456.3953
## 2246 0.00000 1456.3953
## 2247 0.00000 1456.3953
## 2248 0.00000 1456.3953
## 2249 0.00000 1456.3953
## 2250 0.00000 1456.3953
## 2251 0.00000 1456.3953
## 2252 0.00000 1456.3953
## 2253 0.00000 1456.3953
## 2254 0.00000 1456.3953
## 2255 0.00000 1456.3953
## 2256 0.00000 1456.3953
## 2257 1312.50000 1059.5930
## 2258 1312.50000 1059.5930
## 2259 1312.50000 1059.5930
## 2260 1312.50000 1059.5930
## 2261 1312.50000 1059.5930
## 2262 1312.50000 1059.5930
## 2263 1312.50000 1059.5930
## 2264 1312.50000 1059.5930
## 2265 1312.50000 1059.5930
## 2266 1312.50000 1059.5930
## 2267 1312.50000 1059.5930
## 2268 1312.50000 1059.5930
## 2269 1312.50000 1059.5930
## 2270 1312.50000 1059.5930
## 2271 1312.50000 1059.5930
## 2272 1312.50000 1059.5930
## 2273 1312.50000 1059.5930
## 2274 1312.50000 1059.5930
## 2275 1312.50000 1059.5930
## 2276 1312.50000 1059.5930
## 2277 1312.50000 1059.5930
## 2278 1312.50000 1059.5930
## 2279 1312.50000 1059.5930
## 2280 1312.50000 1059.5930
## 2281 1962.20930 1360.4651
## 2282 1962.20930 1360.4651
## 2283 1962.20930 1360.4651
## 2284 1962.20930 1360.4651
## 2285 1962.20930 1360.4651
## 2286 1962.20930 1360.4651
## 2287 1962.20930 1360.4651
## 2288 1962.20930 1360.4651
## 2289 1962.20930 1360.4651
## 2290 1962.20930 1360.4651
## 2291 1962.20930 1360.4651
## 2292 1962.20930 1360.4651
## 2293 1962.20930 1360.4651
## 2294 1962.20930 1360.4651
## 2295 1962.20930 1360.4651
## 2296 1962.20930 1360.4651
## 2297 1962.20930 1360.4651
## 2298 1962.20930 1360.4651
## 2299 1962.20930 1360.4651
## 2300 1962.20930 1360.4651
## 2301 1962.20930 1360.4651
## 2302 1962.20930 1360.4651
## 2303 1962.20930 1360.4651
## 2304 1962.20930 1360.4651
## 2305 7834.88372 3155.2326
## 2306 7834.88372 3155.2326
## 2307 7834.88372 3155.2326
## 2308 7834.88372 3155.2326
## 2309 7834.88372 3155.2326
## 2310 7834.88372 3155.2326
## 2311 7834.88372 3155.2326
## 2312 7834.88372 3155.2326
## 2313 7834.88372 3155.2326
## 2314 7834.88372 3155.2326
## 2315 7834.88372 3155.2326
## 2316 7834.88372 3155.2326
## 2317 7834.88372 3155.2326
## 2318 7834.88372 3155.2326
## 2319 7834.88372 3155.2326
## 2320 7834.88372 3155.2326
## 2321 7834.88372 3155.2326
## 2322 7834.88372 3155.2326
## 2323 7834.88372 3155.2326
## 2324 7834.88372 3155.2326
## 2325 7834.88372 3155.2326
## 2326 7834.88372 3155.2326
## 2327 7834.88372 3155.2326
## 2328 7834.88372 3155.2326
## 2329 1386.62791 1285.4651
## 2330 1386.62791 1285.4651
## 2331 1386.62791 1285.4651
## 2332 1386.62791 1285.4651
## 2333 1386.62791 1285.4651
## 2334 1386.62791 1285.4651
## 2335 1386.62791 1285.4651
## 2336 1386.62791 1285.4651
## 2337 1386.62791 1285.4651
## 2338 1386.62791 1285.4651
## 2339 1386.62791 1285.4651
## 2340 1386.62791 1285.4651
## 2341 1386.62791 1285.4651
## 2342 1386.62791 1285.4651
## 2343 1386.62791 1285.4651
## 2344 1386.62791 1285.4651
## 2345 1386.62791 1285.4651
## 2346 1386.62791 1285.4651
## 2347 1386.62791 1285.4651
## 2348 1386.62791 1285.4651
## 2349 1386.62791 1285.4651
## 2350 1386.62791 1285.4651
## 2351 1386.62791 1285.4651
## 2352 1386.62791 1285.4651
## 2353 0.00000 6648.8372
## 2354 0.00000 6648.8372
## 2355 0.00000 6648.8372
## 2356 0.00000 6648.8372
## 2357 0.00000 6648.8372
## 2358 0.00000 6648.8372
## 2359 0.00000 6648.8372
## 2360 0.00000 6648.8372
## 2361 0.00000 6648.8372
## 2362 0.00000 6648.8372
## 2363 0.00000 6648.8372
## 2364 0.00000 6648.8372
## 2365 0.00000 6648.8372
## 2366 0.00000 6648.8372
## 2367 0.00000 6648.8372
## 2368 0.00000 6648.8372
## 2369 0.00000 6648.8372
## 2370 0.00000 6648.8372
## 2371 0.00000 6648.8372
## 2372 0.00000 6648.8372
## 2373 0.00000 6648.8372
## 2374 0.00000 6648.8372
## 2375 0.00000 6648.8372
## 2376 0.00000 6648.8372
## 2377 837.20930 3453.4884
## 2378 837.20930 3453.4884
## 2379 837.20930 3453.4884
## 2380 837.20930 3453.4884
## 2381 837.20930 3453.4884
## 2382 837.20930 3453.4884
## 2383 837.20930 3453.4884
## 2384 837.20930 3453.4884
## 2385 837.20930 3453.4884
## 2386 837.20930 3453.4884
## 2387 837.20930 3453.4884
## 2388 837.20930 3453.4884
## 2389 837.20930 3453.4884
## 2390 837.20930 3453.4884
## 2391 837.20930 3453.4884
## 2392 837.20930 3453.4884
## 2393 837.20930 3453.4884
## 2394 837.20930 3453.4884
## 2395 837.20930 3453.4884
## 2396 837.20930 3453.4884
## 2397 837.20930 3453.4884
## 2398 837.20930 3453.4884
## 2399 837.20930 3453.4884
## 2400 837.20930 3453.4884
## 2401 650.58140 1936.0465
## 2402 650.58140 1936.0465
## 2403 650.58140 1936.0465
## 2404 650.58140 1936.0465
## 2405 650.58140 1936.0465
## 2406 650.58140 1936.0465
## 2407 650.58140 1936.0465
## 2408 650.58140 1936.0465
## 2409 650.58140 1936.0465
## 2410 650.58140 1936.0465
## 2411 650.58140 1936.0465
## 2412 650.58140 1936.0465
## 2413 650.58140 1936.0465
## 2414 650.58140 1936.0465
## 2415 650.58140 1936.0465
## 2416 650.58140 1936.0465
## 2417 650.58140 1936.0465
## 2418 650.58140 1936.0465
## 2419 650.58140 1936.0465
## 2420 650.58140 1936.0465
## 2421 650.58140 1936.0465
## 2422 650.58140 1936.0465
## 2423 650.58140 1936.0465
## 2424 650.58140 1936.0465
## 2425 0.00000 383.7209
## 2426 0.00000 383.7209
## 2427 0.00000 383.7209
## 2428 0.00000 383.7209
## 2429 0.00000 383.7209
## 2430 0.00000 383.7209
## 2431 0.00000 383.7209
## 2432 0.00000 383.7209
## 2433 0.00000 383.7209
## 2434 0.00000 383.7209
## 2435 0.00000 383.7209
## 2436 0.00000 383.7209
## 2437 0.00000 383.7209
## 2438 0.00000 383.7209
## 2439 0.00000 383.7209
## 2440 0.00000 383.7209
## 2441 0.00000 383.7209
## 2442 0.00000 383.7209
## 2443 0.00000 383.7209
## 2444 0.00000 383.7209
## 2445 0.00000 383.7209
## 2446 0.00000 383.7209
## 2447 0.00000 383.7209
## 2448 0.00000 383.7209
## 2449 859.01163 0.0000
## 2450 859.01163 0.0000
## 2451 859.01163 0.0000
## 2452 859.01163 0.0000
## 2453 859.01163 0.0000
## 2454 859.01163 0.0000
## 2455 859.01163 0.0000
## 2456 859.01163 0.0000
## 2457 859.01163 0.0000
## 2458 859.01163 0.0000
## 2459 859.01163 0.0000
## 2460 859.01163 0.0000
## 2461 859.01163 0.0000
## 2462 859.01163 0.0000
## 2463 859.01163 0.0000
## 2464 859.01163 0.0000
## 2465 859.01163 0.0000
## 2466 859.01163 0.0000
## 2467 859.01163 0.0000
## 2468 859.01163 0.0000
## 2469 859.01163 0.0000
## 2470 859.01163 0.0000
## 2471 859.01163 0.0000
## 2472 859.01163 0.0000
## 2473 1090.11628 4469.4767
## 2474 1090.11628 4469.4767
## 2475 1090.11628 4469.4767
## 2476 1090.11628 4469.4767
## 2477 1090.11628 4469.4767
## 2478 1090.11628 4469.4767
## 2479 1090.11628 4469.4767
## 2480 1090.11628 4469.4767
## 2481 1090.11628 4469.4767
## 2482 1090.11628 4469.4767
## 2483 1090.11628 4469.4767
## 2484 1090.11628 4469.4767
## 2485 1090.11628 4469.4767
## 2486 1090.11628 4469.4767
## 2487 1090.11628 4469.4767
## 2488 1090.11628 4469.4767
## 2489 1090.11628 4469.4767
## 2490 1090.11628 4469.4767
## 2491 1090.11628 4469.4767
## 2492 1090.11628 4469.4767
## 2493 1090.11628 4469.4767
## 2494 1090.11628 4469.4767
## 2495 1090.11628 4469.4767
## 2496 1090.11628 4469.4767
## 2497 7834.88372 3155.2326
## 2498 7834.88372 3155.2326
## 2499 7834.88372 3155.2326
## 2500 7834.88372 3155.2326
## 2501 7834.88372 3155.2326
## 2502 7834.88372 3155.2326
## 2503 7834.88372 3155.2326
## 2504 7834.88372 3155.2326
## 2505 7834.88372 3155.2326
## 2506 7834.88372 3155.2326
## 2507 7834.88372 3155.2326
## 2508 7834.88372 3155.2326
## 2509 7834.88372 3155.2326
## 2510 7834.88372 3155.2326
## 2511 7834.88372 3155.2326
## 2512 7834.88372 3155.2326
## 2513 7834.88372 3155.2326
## 2514 7834.88372 3155.2326
## 2515 7834.88372 3155.2326
## 2516 7834.88372 3155.2326
## 2517 7834.88372 3155.2326
## 2518 7834.88372 3155.2326
## 2519 7834.88372 3155.2326
## 2520 7834.88372 3155.2326
## 2521 0.00000 1512.2093
## 2522 0.00000 1512.2093
## 2523 0.00000 1512.2093
## 2524 0.00000 1512.2093
## 2525 0.00000 1512.2093
## 2526 0.00000 1512.2093
## 2527 0.00000 1512.2093
## 2528 0.00000 1512.2093
## 2529 0.00000 1512.2093
## 2530 0.00000 1512.2093
## 2531 0.00000 1512.2093
## 2532 0.00000 1512.2093
## 2533 0.00000 1512.2093
## 2534 0.00000 1512.2093
## 2535 0.00000 1512.2093
## 2536 0.00000 1512.2093
## 2537 0.00000 1512.2093
## 2538 0.00000 1512.2093
## 2539 0.00000 1512.2093
## 2540 0.00000 1512.2093
## 2541 0.00000 1512.2093
## 2542 0.00000 1512.2093
## 2543 0.00000 1512.2093
## 2544 0.00000 1512.2093
## 2545 0.00000 8297.0930
## 2546 0.00000 8297.0930
## 2547 0.00000 8297.0930
## 2548 0.00000 8297.0930
## 2549 0.00000 8297.0930
## 2550 0.00000 8297.0930
## 2551 0.00000 8297.0930
## 2552 0.00000 8297.0930
## 2553 0.00000 8297.0930
## 2554 0.00000 8297.0930
## 2555 0.00000 8297.0930
## 2556 0.00000 8297.0930
## 2557 0.00000 8297.0930
## 2558 0.00000 8297.0930
## 2559 0.00000 8297.0930
## 2560 0.00000 8297.0930
## 2561 0.00000 8297.0930
## 2562 0.00000 8297.0930
## 2563 0.00000 8297.0930
## 2564 0.00000 8297.0930
## 2565 0.00000 8297.0930
## 2566 0.00000 8297.0930
## 2567 0.00000 8297.0930
## 2568 0.00000 8297.0930
## 2569 0.00000 1090.1163
## 2570 0.00000 1090.1163
## 2571 0.00000 1090.1163
## 2572 0.00000 1090.1163
## 2573 0.00000 1090.1163
## 2574 0.00000 1090.1163
## 2575 0.00000 1090.1163
## 2576 0.00000 1090.1163
## 2577 0.00000 1090.1163
## 2578 0.00000 1090.1163
## 2579 0.00000 1090.1163
## 2580 0.00000 1090.1163
## 2581 0.00000 1090.1163
## 2582 0.00000 1090.1163
## 2583 0.00000 1090.1163
## 2584 0.00000 1090.1163
## 2585 0.00000 1090.1163
## 2586 0.00000 1090.1163
## 2587 0.00000 1090.1163
## 2588 0.00000 1090.1163
## 2589 0.00000 1090.1163
## 2590 0.00000 1090.1163
## 2591 0.00000 1090.1163
## 2592 0.00000 1090.1163
## 2593 938.37209 5581.3953
## 2594 938.37209 5581.3953
## 2595 938.37209 5581.3953
## 2596 938.37209 5581.3953
## 2597 938.37209 5581.3953
## 2598 938.37209 5581.3953
## 2599 938.37209 5581.3953
## 2600 938.37209 5581.3953
## 2601 938.37209 5581.3953
## 2602 938.37209 5581.3953
## 2603 938.37209 5581.3953
## 2604 938.37209 5581.3953
## 2605 938.37209 5581.3953
## 2606 938.37209 5581.3953
## 2607 938.37209 5581.3953
## 2608 938.37209 5581.3953
## 2609 938.37209 5581.3953
## 2610 938.37209 5581.3953
## 2611 938.37209 5581.3953
## 2612 938.37209 5581.3953
## 2613 938.37209 5581.3953
## 2614 938.37209 5581.3953
## 2615 938.37209 5581.3953
## 2616 938.37209 5581.3953
## 2617 1090.11628 0.0000
## 2618 1090.11628 0.0000
## 2619 1090.11628 0.0000
## 2620 1090.11628 0.0000
## 2621 1090.11628 0.0000
## 2622 1090.11628 0.0000
## 2623 1090.11628 0.0000
## 2624 1090.11628 0.0000
## 2625 1090.11628 0.0000
## 2626 1090.11628 0.0000
## 2627 1090.11628 0.0000
## 2628 1090.11628 0.0000
## 2629 1090.11628 0.0000
## 2630 1090.11628 0.0000
## 2631 1090.11628 0.0000
## total_metaecosystem_Lox_indiv total_metaecosystem_Pau_indiv
## 1 2494.1860 5161.0465
## 2 2494.1860 5161.0465
## 3 2494.1860 5161.0465
## 4 2494.1860 5161.0465
## 5 2494.1860 5161.0465
## 6 2494.1860 5161.0465
## 7 2494.1860 5161.0465
## 8 2494.1860 5161.0465
## 9 2494.1860 5161.0465
## 10 2494.1860 5161.0465
## 11 2494.1860 5161.0465
## 12 2494.1860 5161.0465
## 13 2494.1860 5161.0465
## 14 2494.1860 5161.0465
## 15 2494.1860 5161.0465
## 16 2494.1860 5161.0465
## 17 2494.1860 5161.0465
## 18 2494.1860 5161.0465
## 19 2494.1860 5161.0465
## 20 2494.1860 5161.0465
## 21 2494.1860 5161.0465
## 22 2494.1860 5161.0465
## 23 2494.1860 5161.0465
## 24 2494.1860 5161.0465
## 25 218.0233 0.0000
## 26 218.0233 0.0000
## 27 218.0233 0.0000
## 28 218.0233 0.0000
## 29 218.0233 0.0000
## 30 218.0233 0.0000
## 31 218.0233 0.0000
## 32 218.0233 0.0000
## 33 218.0233 0.0000
## 34 218.0233 0.0000
## 35 218.0233 0.0000
## 36 218.0233 0.0000
## 37 218.0233 0.0000
## 38 218.0233 0.0000
## 39 218.0233 0.0000
## 40 218.0233 0.0000
## 41 218.0233 0.0000
## 42 218.0233 0.0000
## 43 218.0233 0.0000
## 44 218.0233 0.0000
## 45 218.0233 0.0000
## 46 218.0233 0.0000
## 47 218.0233 0.0000
## 48 218.0233 0.0000
## 49 0.0000 1970.9302
## 50 0.0000 1970.9302
## 51 0.0000 1970.9302
## 52 0.0000 1970.9302
## 53 0.0000 1970.9302
## 54 0.0000 1970.9302
## 55 0.0000 1970.9302
## 56 0.0000 1970.9302
## 57 0.0000 1970.9302
## 58 0.0000 1970.9302
## 59 0.0000 1970.9302
## 60 0.0000 1970.9302
## 61 0.0000 1970.9302
## 62 0.0000 1970.9302
## 63 0.0000 1970.9302
## 64 0.0000 1970.9302
## 65 0.0000 1970.9302
## 66 0.0000 1970.9302
## 67 0.0000 1970.9302
## 68 0.0000 1970.9302
## 69 0.0000 1970.9302
## 70 0.0000 1970.9302
## 71 0.0000 1970.9302
## 72 0.0000 1970.9302
## 73 0.0000 1369.1860
## 74 0.0000 1369.1860
## 75 0.0000 1369.1860
## 76 0.0000 1369.1860
## 77 0.0000 1369.1860
## 78 0.0000 1369.1860
## 79 0.0000 1369.1860
## 80 0.0000 1369.1860
## 81 0.0000 1369.1860
## 82 0.0000 1369.1860
## 83 0.0000 1369.1860
## 84 0.0000 1369.1860
## 85 0.0000 1369.1860
## 86 0.0000 1369.1860
## 87 0.0000 1369.1860
## 88 0.0000 1369.1860
## 89 0.0000 1369.1860
## 90 0.0000 1369.1860
## 91 0.0000 1369.1860
## 92 0.0000 1369.1860
## 93 0.0000 1369.1860
## 94 0.0000 1369.1860
## 95 0.0000 1369.1860
## 96 0.0000 1369.1860
## 97 436.0465 2776.7442
## 98 436.0465 2776.7442
## 99 436.0465 2776.7442
## 100 436.0465 2776.7442
## 101 436.0465 2776.7442
## 102 436.0465 2776.7442
## 103 436.0465 2776.7442
## 104 436.0465 2776.7442
## 105 436.0465 2776.7442
## 106 436.0465 2776.7442
## 107 436.0465 2776.7442
## 108 436.0465 2776.7442
## 109 436.0465 2776.7442
## 110 436.0465 2776.7442
## 111 436.0465 2776.7442
## 112 436.0465 2776.7442
## 113 436.0465 2776.7442
## 114 436.0465 2776.7442
## 115 436.0465 2776.7442
## 116 436.0465 2776.7442
## 117 436.0465 2776.7442
## 118 436.0465 2776.7442
## 119 436.0465 2776.7442
## 120 436.0465 2776.7442
## 121 0.0000 559.8837
## 122 0.0000 559.8837
## 123 0.0000 559.8837
## 124 0.0000 559.8837
## 125 0.0000 559.8837
## 126 0.0000 559.8837
## 127 0.0000 559.8837
## 128 0.0000 559.8837
## 129 0.0000 559.8837
## 130 0.0000 559.8837
## 131 0.0000 559.8837
## 132 0.0000 559.8837
## 133 0.0000 559.8837
## 134 0.0000 559.8837
## 135 0.0000 559.8837
## 136 0.0000 559.8837
## 137 0.0000 559.8837
## 138 0.0000 559.8837
## 139 0.0000 559.8837
## 140 0.0000 559.8837
## 141 0.0000 559.8837
## 142 0.0000 559.8837
## 143 0.0000 559.8837
## 144 0.0000 559.8837
## 145 545.0581 109.0116
## 146 545.0581 109.0116
## 147 545.0581 109.0116
## 148 545.0581 109.0116
## 149 545.0581 109.0116
## 150 545.0581 109.0116
## 151 545.0581 109.0116
## 152 545.0581 109.0116
## 153 545.0581 109.0116
## 154 545.0581 109.0116
## 155 545.0581 109.0116
## 156 545.0581 109.0116
## 157 545.0581 109.0116
## 158 545.0581 109.0116
## 159 545.0581 109.0116
## 160 545.0581 109.0116
## 161 545.0581 109.0116
## 162 545.0581 109.0116
## 163 545.0581 109.0116
## 164 545.0581 109.0116
## 165 545.0581 109.0116
## 166 545.0581 109.0116
## 167 545.0581 109.0116
## 168 545.0581 109.0116
## 169 1630.8140 531.9767
## 170 1630.8140 531.9767
## 171 1630.8140 531.9767
## 172 1630.8140 531.9767
## 173 1630.8140 531.9767
## 174 1630.8140 531.9767
## 175 1630.8140 531.9767
## 176 1630.8140 531.9767
## 177 1630.8140 531.9767
## 178 1630.8140 531.9767
## 179 1630.8140 531.9767
## 180 1630.8140 531.9767
## 181 1630.8140 531.9767
## 182 1630.8140 531.9767
## 183 1630.8140 531.9767
## 184 1630.8140 531.9767
## 185 1630.8140 531.9767
## 186 1630.8140 531.9767
## 187 1630.8140 531.9767
## 188 1630.8140 531.9767
## 189 1630.8140 531.9767
## 190 1630.8140 531.9767
## 191 1630.8140 531.9767
## 192 1630.8140 531.9767
## 193 2494.1860 5161.0465
## 194 2494.1860 5161.0465
## 195 2494.1860 5161.0465
## 196 2494.1860 5161.0465
## 197 2494.1860 5161.0465
## 198 2494.1860 5161.0465
## 199 2494.1860 5161.0465
## 200 2494.1860 5161.0465
## 201 2494.1860 5161.0465
## 202 2494.1860 5161.0465
## 203 2494.1860 5161.0465
## 204 2494.1860 5161.0465
## 205 2494.1860 5161.0465
## 206 2494.1860 5161.0465
## 207 2494.1860 5161.0465
## 208 2494.1860 5161.0465
## 209 2494.1860 5161.0465
## 210 2494.1860 5161.0465
## 211 2494.1860 5161.0465
## 212 2494.1860 5161.0465
## 213 2494.1860 5161.0465
## 214 2494.1860 5161.0465
## 215 2494.1860 5161.0465
## 216 2494.1860 5161.0465
## 217 1438.9535 5720.9302
## 218 1438.9535 5720.9302
## 219 1438.9535 5720.9302
## 220 1438.9535 5720.9302
## 221 1438.9535 5720.9302
## 222 1438.9535 5720.9302
## 223 1438.9535 5720.9302
## 224 1438.9535 5720.9302
## 225 1438.9535 5720.9302
## 226 1438.9535 5720.9302
## 227 1438.9535 5720.9302
## 228 1438.9535 5720.9302
## 229 1438.9535 5720.9302
## 230 1438.9535 5720.9302
## 231 1438.9535 5720.9302
## 232 1438.9535 5720.9302
## 233 1438.9535 5720.9302
## 234 1438.9535 5720.9302
## 235 1438.9535 5720.9302
## 236 1438.9535 5720.9302
## 237 1438.9535 5720.9302
## 238 1438.9535 5720.9302
## 239 1438.9535 5720.9302
## 240 1438.9535 5720.9302
## 241 0.0000 331.3953
## 242 0.0000 331.3953
## 243 0.0000 331.3953
## 244 0.0000 331.3953
## 245 0.0000 331.3953
## 246 0.0000 331.3953
## 247 0.0000 331.3953
## 248 0.0000 331.3953
## 249 0.0000 331.3953
## 250 0.0000 331.3953
## 251 0.0000 331.3953
## 252 0.0000 331.3953
## 253 0.0000 331.3953
## 254 0.0000 331.3953
## 255 0.0000 331.3953
## 256 0.0000 331.3953
## 257 0.0000 331.3953
## 258 0.0000 331.3953
## 259 0.0000 331.3953
## 260 0.0000 331.3953
## 261 0.0000 331.3953
## 262 0.0000 331.3953
## 263 0.0000 331.3953
## 264 0.0000 331.3953
## 265 0.0000 3052.3256
## 266 0.0000 3052.3256
## 267 0.0000 3052.3256
## 268 0.0000 3052.3256
## 269 0.0000 3052.3256
## 270 0.0000 3052.3256
## 271 0.0000 3052.3256
## 272 0.0000 3052.3256
## 273 0.0000 3052.3256
## 274 0.0000 3052.3256
## 275 0.0000 3052.3256
## 276 0.0000 3052.3256
## 277 0.0000 3052.3256
## 278 0.0000 3052.3256
## 279 0.0000 3052.3256
## 280 0.0000 3052.3256
## 281 0.0000 3052.3256
## 282 0.0000 3052.3256
## 283 0.0000 3052.3256
## 284 0.0000 3052.3256
## 285 0.0000 3052.3256
## 286 0.0000 3052.3256
## 287 0.0000 3052.3256
## 288 0.0000 3052.3256
## 289 436.0465 2192.4419
## 290 436.0465 2192.4419
## 291 436.0465 2192.4419
## 292 436.0465 2192.4419
## 293 436.0465 2192.4419
## 294 436.0465 2192.4419
## 295 436.0465 2192.4419
## 296 436.0465 2192.4419
## 297 436.0465 2192.4419
## 298 436.0465 2192.4419
## 299 436.0465 2192.4419
## 300 436.0465 2192.4419
## 301 436.0465 2192.4419
## 302 436.0465 2192.4419
## 303 436.0465 2192.4419
## 304 436.0465 2192.4419
## 305 436.0465 2192.4419
## 306 436.0465 2192.4419
## 307 436.0465 2192.4419
## 308 436.0465 2192.4419
## 309 436.0465 2192.4419
## 310 436.0465 2192.4419
## 311 436.0465 2192.4419
## 312 436.0465 2192.4419
## 313 0.0000 1833.1395
## 314 0.0000 1833.1395
## 315 0.0000 1833.1395
## 316 0.0000 1833.1395
## 317 0.0000 1833.1395
## 318 0.0000 1833.1395
## 319 0.0000 1833.1395
## 320 0.0000 1833.1395
## 321 0.0000 1833.1395
## 322 0.0000 1833.1395
## 323 0.0000 1833.1395
## 324 0.0000 1833.1395
## 325 0.0000 1833.1395
## 326 0.0000 1833.1395
## 327 0.0000 1833.1395
## 328 0.0000 1833.1395
## 329 0.0000 1833.1395
## 330 0.0000 1833.1395
## 331 0.0000 1833.1395
## 332 0.0000 1833.1395
## 333 0.0000 1833.1395
## 334 0.0000 1833.1395
## 335 0.0000 1833.1395
## 336 0.0000 1833.1395
## 337 0.0000 1020.3488
## 338 0.0000 1020.3488
## 339 0.0000 1020.3488
## 340 0.0000 1020.3488
## 341 0.0000 1020.3488
## 342 0.0000 1020.3488
## 343 0.0000 1020.3488
## 344 0.0000 1020.3488
## 345 0.0000 1020.3488
## 346 0.0000 1020.3488
## 347 0.0000 1020.3488
## 348 0.0000 1020.3488
## 349 0.0000 1020.3488
## 350 0.0000 1020.3488
## 351 0.0000 1020.3488
## 352 0.0000 1020.3488
## 353 0.0000 1020.3488
## 354 0.0000 1020.3488
## 355 0.0000 1020.3488
## 356 0.0000 1020.3488
## 357 0.0000 1020.3488
## 358 0.0000 1020.3488
## 359 0.0000 1020.3488
## 360 0.0000 1020.3488
## 361 545.0581 109.0116
## 362 545.0581 109.0116
## 363 545.0581 109.0116
## 364 545.0581 109.0116
## 365 545.0581 109.0116
## 366 545.0581 109.0116
## 367 545.0581 109.0116
## 368 545.0581 109.0116
## 369 545.0581 109.0116
## 370 545.0581 109.0116
## 371 545.0581 109.0116
## 372 545.0581 109.0116
## 373 545.0581 109.0116
## 374 545.0581 109.0116
## 375 545.0581 109.0116
## 376 545.0581 109.0116
## 377 545.0581 109.0116
## 378 545.0581 109.0116
## 379 545.0581 109.0116
## 380 545.0581 109.0116
## 381 545.0581 109.0116
## 382 545.0581 109.0116
## 383 545.0581 109.0116
## 384 545.0581 109.0116
## 385 2494.1860 5161.0465
## 386 2494.1860 5161.0465
## 387 2494.1860 5161.0465
## 388 2494.1860 5161.0465
## 389 2494.1860 5161.0465
## 390 2494.1860 5161.0465
## 391 2494.1860 5161.0465
## 392 2494.1860 5161.0465
## 393 2494.1860 5161.0465
## 394 2494.1860 5161.0465
## 395 2494.1860 5161.0465
## 396 2494.1860 5161.0465
## 397 2494.1860 5161.0465
## 398 2494.1860 5161.0465
## 399 2494.1860 5161.0465
## 400 2494.1860 5161.0465
## 401 2494.1860 5161.0465
## 402 2494.1860 5161.0465
## 403 2494.1860 5161.0465
## 404 2494.1860 5161.0465
## 405 2494.1860 5161.0465
## 406 2494.1860 5161.0465
## 407 2494.1860 5161.0465
## 408 2494.1860 5161.0465
## 409 2188.9535 915.6977
## 410 2188.9535 915.6977
## 411 2188.9535 915.6977
## 412 2188.9535 915.6977
## 413 2188.9535 915.6977
## 414 2188.9535 915.6977
## 415 2188.9535 915.6977
## 416 2188.9535 915.6977
## 417 2188.9535 915.6977
## 418 2188.9535 915.6977
## 419 2188.9535 915.6977
## 420 2188.9535 915.6977
## 421 2188.9535 915.6977
## 422 2188.9535 915.6977
## 423 2188.9535 915.6977
## 424 2188.9535 915.6977
## 425 2188.9535 915.6977
## 426 2188.9535 915.6977
## 427 2188.9535 915.6977
## 428 2188.9535 915.6977
## 429 2188.9535 915.6977
## 430 2188.9535 915.6977
## 431 2188.9535 915.6977
## 432 2188.9535 915.6977
## 433 244.1860 872.0930
## 434 244.1860 872.0930
## 435 244.1860 872.0930
## 436 244.1860 872.0930
## 437 244.1860 872.0930
## 438 244.1860 872.0930
## 439 244.1860 872.0930
## 440 244.1860 872.0930
## 441 244.1860 872.0930
## 442 244.1860 872.0930
## 443 244.1860 872.0930
## 444 244.1860 872.0930
## 445 244.1860 872.0930
## 446 244.1860 872.0930
## 447 244.1860 872.0930
## 448 244.1860 872.0930
## 449 244.1860 872.0930
## 450 244.1860 872.0930
## 451 244.1860 872.0930
## 452 244.1860 872.0930
## 453 244.1860 872.0930
## 454 244.1860 872.0930
## 455 244.1860 872.0930
## 456 244.1860 872.0930
## 457 837.2093 2093.0233
## 458 837.2093 2093.0233
## 459 837.2093 2093.0233
## 460 837.2093 2093.0233
## 461 837.2093 2093.0233
## 462 837.2093 2093.0233
## 463 837.2093 2093.0233
## 464 837.2093 2093.0233
## 465 837.2093 2093.0233
## 466 837.2093 2093.0233
## 467 837.2093 2093.0233
## 468 837.2093 2093.0233
## 469 837.2093 2093.0233
## 470 837.2093 2093.0233
## 471 837.2093 2093.0233
## 472 837.2093 2093.0233
## 473 837.2093 2093.0233
## 474 837.2093 2093.0233
## 475 837.2093 2093.0233
## 476 837.2093 2093.0233
## 477 837.2093 2093.0233
## 478 837.2093 2093.0233
## 479 837.2093 2093.0233
## 480 837.2093 2093.0233
## 481 436.0465 1477.3256
## 482 436.0465 1477.3256
## 483 436.0465 1477.3256
## 484 436.0465 1477.3256
## 485 436.0465 1477.3256
## 486 436.0465 1477.3256
## 487 436.0465 1477.3256
## 488 436.0465 1477.3256
## 489 436.0465 1477.3256
## 490 436.0465 1477.3256
## 491 436.0465 1477.3256
## 492 436.0465 1477.3256
## 493 436.0465 1477.3256
## 494 436.0465 1477.3256
## 495 436.0465 1477.3256
## 496 436.0465 1477.3256
## 497 436.0465 1477.3256
## 498 436.0465 1477.3256
## 499 436.0465 1477.3256
## 500 436.0465 1477.3256
## 501 436.0465 1477.3256
## 502 436.0465 1477.3256
## 503 436.0465 1477.3256
## 504 436.0465 1477.3256
## 505 0.0000 3647.0930
## 506 0.0000 3647.0930
## 507 0.0000 3647.0930
## 508 0.0000 3647.0930
## 509 0.0000 3647.0930
## 510 0.0000 3647.0930
## 511 0.0000 3647.0930
## 512 0.0000 3647.0930
## 513 0.0000 3647.0930
## 514 0.0000 3647.0930
## 515 0.0000 3647.0930
## 516 0.0000 3647.0930
## 517 0.0000 3647.0930
## 518 0.0000 3647.0930
## 519 0.0000 3647.0930
## 520 0.0000 3647.0930
## 521 0.0000 3647.0930
## 522 0.0000 3647.0930
## 523 0.0000 3647.0930
## 524 0.0000 3647.0930
## 525 0.0000 3647.0930
## 526 0.0000 3647.0930
## 527 0.0000 3647.0930
## 528 0.0000 3647.0930
## 529 545.0581 353.1977
## 530 545.0581 353.1977
## 531 545.0581 353.1977
## 532 545.0581 353.1977
## 533 545.0581 353.1977
## 534 545.0581 353.1977
## 535 545.0581 353.1977
## 536 545.0581 353.1977
## 537 545.0581 353.1977
## 538 545.0581 353.1977
## 539 545.0581 353.1977
## 540 545.0581 353.1977
## 541 545.0581 353.1977
## 542 545.0581 353.1977
## 543 545.0581 353.1977
## 544 545.0581 353.1977
## 545 545.0581 353.1977
## 546 545.0581 353.1977
## 547 545.0581 353.1977
## 548 545.0581 353.1977
## 549 545.0581 353.1977
## 550 545.0581 353.1977
## 551 545.0581 353.1977
## 552 545.0581 353.1977
## 553 1212.2093 523.2558
## 554 1212.2093 523.2558
## 555 1212.2093 523.2558
## 556 1212.2093 523.2558
## 557 1212.2093 523.2558
## 558 1212.2093 523.2558
## 559 1212.2093 523.2558
## 560 1212.2093 523.2558
## 561 1212.2093 523.2558
## 562 1212.2093 523.2558
## 563 1212.2093 523.2558
## 564 1212.2093 523.2558
## 565 1212.2093 523.2558
## 566 1212.2093 523.2558
## 567 1212.2093 523.2558
## 568 1212.2093 523.2558
## 569 1212.2093 523.2558
## 570 1212.2093 523.2558
## 571 1212.2093 523.2558
## 572 1212.2093 523.2558
## 573 1212.2093 523.2558
## 574 1212.2093 523.2558
## 575 1212.2093 523.2558
## 576 1212.2093 523.2558
## 577 2494.1860 5161.0465
## 578 2494.1860 5161.0465
## 579 2494.1860 5161.0465
## 580 2494.1860 5161.0465
## 581 2494.1860 5161.0465
## 582 2494.1860 5161.0465
## 583 2494.1860 5161.0465
## 584 2494.1860 5161.0465
## 585 2494.1860 5161.0465
## 586 2494.1860 5161.0465
## 587 2494.1860 5161.0465
## 588 2494.1860 5161.0465
## 589 2494.1860 5161.0465
## 590 2494.1860 5161.0465
## 591 2494.1860 5161.0465
## 592 2494.1860 5161.0465
## 593 2494.1860 5161.0465
## 594 2494.1860 5161.0465
## 595 2494.1860 5161.0465
## 596 2494.1860 5161.0465
## 597 2494.1860 5161.0465
## 598 2494.1860 5161.0465
## 599 2494.1860 5161.0465
## 600 2494.1860 5161.0465
## 601 218.0233 2494.1860
## 602 218.0233 2494.1860
## 603 218.0233 2494.1860
## 604 218.0233 2494.1860
## 605 218.0233 2494.1860
## 606 218.0233 2494.1860
## 607 218.0233 2494.1860
## 608 218.0233 2494.1860
## 609 218.0233 2494.1860
## 610 218.0233 2494.1860
## 611 218.0233 2494.1860
## 612 218.0233 2494.1860
## 613 218.0233 2494.1860
## 614 218.0233 2494.1860
## 615 218.0233 2494.1860
## 616 218.0233 2494.1860
## 617 218.0233 2494.1860
## 618 218.0233 2494.1860
## 619 218.0233 2494.1860
## 620 218.0233 2494.1860
## 621 218.0233 2494.1860
## 622 218.0233 2494.1860
## 623 218.0233 2494.1860
## 624 218.0233 2494.1860
## 625 0.0000 3165.6977
## 626 0.0000 3165.6977
## 627 0.0000 3165.6977
## 628 0.0000 3165.6977
## 629 0.0000 3165.6977
## 630 0.0000 3165.6977
## 631 0.0000 3165.6977
## 632 0.0000 3165.6977
## 633 0.0000 3165.6977
## 634 0.0000 3165.6977
## 635 0.0000 3165.6977
## 636 0.0000 3165.6977
## 637 0.0000 3165.6977
## 638 0.0000 3165.6977
## 639 0.0000 3165.6977
## 640 0.0000 3165.6977
## 641 0.0000 3165.6977
## 642 0.0000 3165.6977
## 643 0.0000 3165.6977
## 644 0.0000 3165.6977
## 645 0.0000 3165.6977
## 646 0.0000 3165.6977
## 647 0.0000 3165.6977
## 648 0.0000 3165.6977
## 649 0.0000 0.0000
## 650 0.0000 0.0000
## 651 0.0000 0.0000
## 652 0.0000 0.0000
## 653 0.0000 0.0000
## 654 0.0000 0.0000
## 655 0.0000 0.0000
## 656 0.0000 0.0000
## 657 0.0000 0.0000
## 658 0.0000 0.0000
## 659 0.0000 0.0000
## 660 0.0000 0.0000
## 661 0.0000 0.0000
## 662 0.0000 0.0000
## 663 0.0000 0.0000
## 664 0.0000 0.0000
## 665 0.0000 0.0000
## 666 0.0000 0.0000
## 667 0.0000 0.0000
## 668 0.0000 0.0000
## 669 0.0000 0.0000
## 670 0.0000 0.0000
## 671 0.0000 0.0000
## 672 0.0000 0.0000
## 673 436.0465 422.0930
## 674 436.0465 422.0930
## 675 436.0465 422.0930
## 676 436.0465 422.0930
## 677 436.0465 422.0930
## 678 436.0465 422.0930
## 679 436.0465 422.0930
## 680 436.0465 422.0930
## 681 436.0465 422.0930
## 682 436.0465 422.0930
## 683 436.0465 422.0930
## 684 436.0465 422.0930
## 685 436.0465 422.0930
## 686 436.0465 422.0930
## 687 436.0465 422.0930
## 688 436.0465 422.0930
## 689 436.0465 422.0930
## 690 436.0465 422.0930
## 691 436.0465 422.0930
## 692 436.0465 422.0930
## 693 436.0465 422.0930
## 694 436.0465 422.0930
## 695 436.0465 422.0930
## 696 436.0465 422.0930
## 697 1090.1163 167.4419
## 698 1090.1163 167.4419
## 699 1090.1163 167.4419
## 700 1090.1163 167.4419
## 701 1090.1163 167.4419
## 702 1090.1163 167.4419
## 703 1090.1163 167.4419
## 704 1090.1163 167.4419
## 705 1090.1163 167.4419
## 706 1090.1163 167.4419
## 707 1090.1163 167.4419
## 708 1090.1163 167.4419
## 709 1090.1163 167.4419
## 710 1090.1163 167.4419
## 711 1090.1163 167.4419
## 712 1090.1163 167.4419
## 713 1090.1163 167.4419
## 714 1090.1163 167.4419
## 715 1090.1163 167.4419
## 716 1090.1163 167.4419
## 717 1090.1163 167.4419
## 718 1090.1163 167.4419
## 719 1090.1163 167.4419
## 720 1090.1163 167.4419
## 721 545.0581 109.0116
## 722 545.0581 109.0116
## 723 545.0581 109.0116
## 724 545.0581 109.0116
## 725 545.0581 109.0116
## 726 545.0581 109.0116
## 727 545.0581 109.0116
## 728 545.0581 109.0116
## 729 545.0581 109.0116
## 730 545.0581 109.0116
## 731 545.0581 109.0116
## 732 545.0581 109.0116
## 733 545.0581 109.0116
## 734 545.0581 109.0116
## 735 545.0581 109.0116
## 736 545.0581 109.0116
## 737 545.0581 109.0116
## 738 545.0581 109.0116
## 739 545.0581 109.0116
## 740 545.0581 109.0116
## 741 545.0581 109.0116
## 742 545.0581 109.0116
## 743 545.0581 109.0116
## 744 545.0581 109.0116
## 745 545.0581 545.0581
## 746 545.0581 545.0581
## 747 545.0581 545.0581
## 748 545.0581 545.0581
## 749 545.0581 545.0581
## 750 545.0581 545.0581
## 751 545.0581 545.0581
## 752 545.0581 545.0581
## 753 545.0581 545.0581
## 754 545.0581 545.0581
## 755 545.0581 545.0581
## 756 545.0581 545.0581
## 757 545.0581 545.0581
## 758 545.0581 545.0581
## 759 545.0581 545.0581
## 760 545.0581 545.0581
## 761 545.0581 545.0581
## 762 545.0581 545.0581
## 763 545.0581 545.0581
## 764 545.0581 545.0581
## 765 545.0581 545.0581
## 766 545.0581 545.0581
## 767 545.0581 545.0581
## 768 545.0581 545.0581
## 769 2494.1860 5161.0465
## 770 2494.1860 5161.0465
## 771 2494.1860 5161.0465
## 772 2494.1860 5161.0465
## 773 2494.1860 5161.0465
## 774 2494.1860 5161.0465
## 775 2494.1860 5161.0465
## 776 2494.1860 5161.0465
## 777 2494.1860 5161.0465
## 778 2494.1860 5161.0465
## 779 2494.1860 5161.0465
## 780 2494.1860 5161.0465
## 781 2494.1860 5161.0465
## 782 2494.1860 5161.0465
## 783 2494.1860 5161.0465
## 784 2494.1860 5161.0465
## 785 2494.1860 5161.0465
## 786 2494.1860 5161.0465
## 787 2494.1860 5161.0465
## 788 2494.1860 5161.0465
## 789 2494.1860 5161.0465
## 790 2494.1860 5161.0465
## 791 2494.1860 5161.0465
## 792 2494.1860 5161.0465
## 793 2372.0930 4037.7907
## 794 2372.0930 4037.7907
## 795 2372.0930 4037.7907
## 796 2372.0930 4037.7907
## 797 2372.0930 4037.7907
## 798 2372.0930 4037.7907
## 799 2372.0930 4037.7907
## 800 2372.0930 4037.7907
## 801 2372.0930 4037.7907
## 802 2372.0930 4037.7907
## 803 2372.0930 4037.7907
## 804 2372.0930 4037.7907
## 805 2372.0930 4037.7907
## 806 2372.0930 4037.7907
## 807 2372.0930 4037.7907
## 808 2372.0930 4037.7907
## 809 2372.0930 4037.7907
## 810 2372.0930 4037.7907
## 811 2372.0930 4037.7907
## 812 2372.0930 4037.7907
## 813 2372.0930 4037.7907
## 814 2372.0930 4037.7907
## 815 2372.0930 4037.7907
## 816 2372.0930 4037.7907
## 817 0.0000 566.8605
## 818 0.0000 566.8605
## 819 0.0000 566.8605
## 820 0.0000 566.8605
## 821 0.0000 566.8605
## 822 0.0000 566.8605
## 823 0.0000 566.8605
## 824 0.0000 566.8605
## 825 0.0000 566.8605
## 826 0.0000 566.8605
## 827 0.0000 566.8605
## 828 0.0000 566.8605
## 829 0.0000 566.8605
## 830 0.0000 566.8605
## 831 0.0000 566.8605
## 832 0.0000 566.8605
## 833 0.0000 566.8605
## 834 0.0000 566.8605
## 835 0.0000 566.8605
## 836 0.0000 566.8605
## 837 0.0000 566.8605
## 838 0.0000 566.8605
## 839 0.0000 566.8605
## 840 0.0000 566.8605
## 841 0.0000 2180.2326
## 842 0.0000 2180.2326
## 843 0.0000 2180.2326
## 844 0.0000 2180.2326
## 845 0.0000 2180.2326
## 846 0.0000 2180.2326
## 847 0.0000 2180.2326
## 848 0.0000 2180.2326
## 849 0.0000 2180.2326
## 850 0.0000 2180.2326
## 851 0.0000 2180.2326
## 852 0.0000 2180.2326
## 853 0.0000 2180.2326
## 854 0.0000 2180.2326
## 855 0.0000 2180.2326
## 856 0.0000 2180.2326
## 857 0.0000 2180.2326
## 858 0.0000 2180.2326
## 859 0.0000 2180.2326
## 860 0.0000 2180.2326
## 861 0.0000 2180.2326
## 862 0.0000 2180.2326
## 863 0.0000 2180.2326
## 864 0.0000 2180.2326
## 865 1526.1628 1939.5349
## 866 1526.1628 1939.5349
## 867 1526.1628 1939.5349
## 868 1526.1628 1939.5349
## 869 1526.1628 1939.5349
## 870 1526.1628 1939.5349
## 871 1526.1628 1939.5349
## 872 1526.1628 1939.5349
## 873 1526.1628 1939.5349
## 874 1526.1628 1939.5349
## 875 1526.1628 1939.5349
## 876 1526.1628 1939.5349
## 877 1526.1628 1939.5349
## 878 1526.1628 1939.5349
## 879 1526.1628 1939.5349
## 880 1526.1628 1939.5349
## 881 1526.1628 1939.5349
## 882 1526.1628 1939.5349
## 883 1526.1628 1939.5349
## 884 1526.1628 1939.5349
## 885 1526.1628 1939.5349
## 886 1526.1628 1939.5349
## 887 1526.1628 1939.5349
## 888 1526.1628 1939.5349
## 889 1875.0000 1990.1163
## 890 1875.0000 1990.1163
## 891 1875.0000 1990.1163
## 892 1875.0000 1990.1163
## 893 1875.0000 1990.1163
## 894 1875.0000 1990.1163
## 895 1875.0000 1990.1163
## 896 1875.0000 1990.1163
## 897 1875.0000 1990.1163
## 898 1875.0000 1990.1163
## 899 1875.0000 1990.1163
## 900 1875.0000 1990.1163
## 901 1875.0000 1990.1163
## 902 1875.0000 1990.1163
## 903 1875.0000 1990.1163
## 904 1875.0000 1990.1163
## 905 1875.0000 1990.1163
## 906 1875.0000 1990.1163
## 907 1875.0000 1990.1163
## 908 1875.0000 1990.1163
## 909 1875.0000 1990.1163
## 910 1875.0000 1990.1163
## 911 1875.0000 1990.1163
## 912 1875.0000 1990.1163
## 913 1521.8023 109.0116
## 914 1521.8023 109.0116
## 915 1521.8023 109.0116
## 916 1521.8023 109.0116
## 917 1521.8023 109.0116
## 918 1521.8023 109.0116
## 919 1521.8023 109.0116
## 920 1521.8023 109.0116
## 921 1521.8023 109.0116
## 922 1521.8023 109.0116
## 923 1521.8023 109.0116
## 924 1521.8023 109.0116
## 925 1521.8023 109.0116
## 926 1521.8023 109.0116
## 927 1521.8023 109.0116
## 928 1521.8023 109.0116
## 929 1521.8023 109.0116
## 930 1521.8023 109.0116
## 931 1521.8023 109.0116
## 932 1521.8023 109.0116
## 933 1521.8023 109.0116
## 934 1521.8023 109.0116
## 935 1521.8023 109.0116
## 936 1521.8023 109.0116
## 937 545.0581 562.5000
## 938 545.0581 562.5000
## 939 545.0581 562.5000
## 940 545.0581 562.5000
## 941 545.0581 562.5000
## 942 545.0581 562.5000
## 943 545.0581 562.5000
## 944 545.0581 562.5000
## 945 545.0581 562.5000
## 946 545.0581 562.5000
## 947 545.0581 562.5000
## 948 545.0581 562.5000
## 949 545.0581 562.5000
## 950 545.0581 562.5000
## 951 545.0581 562.5000
## 952 545.0581 562.5000
## 953 545.0581 562.5000
## 954 545.0581 562.5000
## 955 545.0581 562.5000
## 956 545.0581 562.5000
## 957 545.0581 562.5000
## 958 545.0581 562.5000
## 959 545.0581 562.5000
## 960 545.0581 562.5000
## 961 2494.1860 5161.0465
## 962 2494.1860 5161.0465
## 963 2494.1860 5161.0465
## 964 2494.1860 5161.0465
## 965 2494.1860 5161.0465
## 966 2494.1860 5161.0465
## 967 2494.1860 5161.0465
## 968 2494.1860 5161.0465
## 969 2494.1860 5161.0465
## 970 2494.1860 5161.0465
## 971 2494.1860 5161.0465
## 972 2494.1860 5161.0465
## 973 2494.1860 5161.0465
## 974 2494.1860 5161.0465
## 975 2494.1860 5161.0465
## 976 2494.1860 5161.0465
## 977 2494.1860 5161.0465
## 978 2494.1860 5161.0465
## 979 2494.1860 5161.0465
## 980 2494.1860 5161.0465
## 981 2494.1860 5161.0465
## 982 2494.1860 5161.0465
## 983 2494.1860 5161.0465
## 984 2494.1860 5161.0465
## 985 129.0698 852.9070
## 986 129.0698 852.9070
## 987 129.0698 852.9070
## 988 129.0698 852.9070
## 989 129.0698 852.9070
## 990 129.0698 852.9070
## 991 129.0698 852.9070
## 992 129.0698 852.9070
## 993 129.0698 852.9070
## 994 129.0698 852.9070
## 995 129.0698 852.9070
## 996 129.0698 852.9070
## 997 129.0698 852.9070
## 998 129.0698 852.9070
## 999 129.0698 852.9070
## 1000 129.0698 852.9070
## 1001 129.0698 852.9070
## 1002 129.0698 852.9070
## 1003 129.0698 852.9070
## 1004 129.0698 852.9070
## 1005 129.0698 852.9070
## 1006 129.0698 852.9070
## 1007 129.0698 852.9070
## 1008 129.0698 852.9070
## 1009 282.5581 1974.4186
## 1010 282.5581 1974.4186
## 1011 282.5581 1974.4186
## 1012 282.5581 1974.4186
## 1013 282.5581 1974.4186
## 1014 282.5581 1974.4186
## 1015 282.5581 1974.4186
## 1016 282.5581 1974.4186
## 1017 282.5581 1974.4186
## 1018 282.5581 1974.4186
## 1019 282.5581 1974.4186
## 1020 282.5581 1974.4186
## 1021 282.5581 1974.4186
## 1022 282.5581 1974.4186
## 1023 282.5581 1974.4186
## 1024 282.5581 1974.4186
## 1025 282.5581 1974.4186
## 1026 282.5581 1974.4186
## 1027 282.5581 1974.4186
## 1028 282.5581 1974.4186
## 1029 282.5581 1974.4186
## 1030 282.5581 1974.4186
## 1031 282.5581 1974.4186
## 1032 282.5581 1974.4186
## 1033 0.0000 2019.7674
## 1034 0.0000 2019.7674
## 1035 0.0000 2019.7674
## 1036 0.0000 2019.7674
## 1037 0.0000 2019.7674
## 1038 0.0000 2019.7674
## 1039 0.0000 2019.7674
## 1040 0.0000 2019.7674
## 1041 0.0000 2019.7674
## 1042 0.0000 2019.7674
## 1043 0.0000 2019.7674
## 1044 0.0000 2019.7674
## 1045 0.0000 2019.7674
## 1046 0.0000 2019.7674
## 1047 0.0000 2019.7674
## 1048 0.0000 2019.7674
## 1049 0.0000 2019.7674
## 1050 0.0000 2019.7674
## 1051 0.0000 2019.7674
## 1052 0.0000 2019.7674
## 1053 0.0000 2019.7674
## 1054 0.0000 2019.7674
## 1055 0.0000 2019.7674
## 1056 0.0000 2019.7674
## 1057 0.0000 2572.6744
## 1058 0.0000 2572.6744
## 1059 0.0000 2572.6744
## 1060 0.0000 2572.6744
## 1061 0.0000 2572.6744
## 1062 0.0000 2572.6744
## 1063 0.0000 2572.6744
## 1064 0.0000 2572.6744
## 1065 0.0000 2572.6744
## 1066 0.0000 2572.6744
## 1067 0.0000 2572.6744
## 1068 0.0000 2572.6744
## 1069 0.0000 2572.6744
## 1070 0.0000 2572.6744
## 1071 0.0000 2572.6744
## 1072 0.0000 2572.6744
## 1073 0.0000 2572.6744
## 1074 0.0000 2572.6744
## 1075 0.0000 2572.6744
## 1076 0.0000 2572.6744
## 1077 0.0000 2572.6744
## 1078 0.0000 2572.6744
## 1079 0.0000 2572.6744
## 1080 0.0000 2572.6744
## 1081 0.0000 610.4651
## 1082 0.0000 610.4651
## 1083 0.0000 610.4651
## 1084 0.0000 610.4651
## 1085 0.0000 610.4651
## 1086 0.0000 610.4651
## 1087 0.0000 610.4651
## 1088 0.0000 610.4651
## 1089 0.0000 610.4651
## 1090 0.0000 610.4651
## 1091 0.0000 610.4651
## 1092 0.0000 610.4651
## 1093 0.0000 610.4651
## 1094 0.0000 610.4651
## 1095 0.0000 610.4651
## 1096 0.0000 610.4651
## 1097 0.0000 610.4651
## 1098 0.0000 610.4651
## 1099 0.0000 610.4651
## 1100 0.0000 610.4651
## 1101 0.0000 610.4651
## 1102 0.0000 610.4651
## 1103 0.0000 610.4651
## 1104 0.0000 610.4651
## 1105 545.0581 0.0000
## 1106 545.0581 0.0000
## 1107 545.0581 0.0000
## 1108 545.0581 0.0000
## 1109 545.0581 0.0000
## 1110 545.0581 0.0000
## 1111 545.0581 0.0000
## 1112 545.0581 0.0000
## 1113 545.0581 0.0000
## 1114 545.0581 0.0000
## 1115 545.0581 0.0000
## 1116 545.0581 0.0000
## 1117 545.0581 0.0000
## 1118 545.0581 0.0000
## 1119 545.0581 0.0000
## 1120 545.0581 0.0000
## 1121 545.0581 0.0000
## 1122 545.0581 0.0000
## 1123 545.0581 0.0000
## 1124 545.0581 0.0000
## 1125 545.0581 0.0000
## 1126 545.0581 0.0000
## 1127 545.0581 0.0000
## 1128 545.0581 0.0000
## 1129 1630.8140 422.9651
## 1130 1630.8140 422.9651
## 1131 1630.8140 422.9651
## 1132 1630.8140 422.9651
## 1133 1630.8140 422.9651
## 1134 1630.8140 422.9651
## 1135 1630.8140 422.9651
## 1136 1630.8140 422.9651
## 1137 1630.8140 422.9651
## 1138 1630.8140 422.9651
## 1139 1630.8140 422.9651
## 1140 1630.8140 422.9651
## 1141 1630.8140 422.9651
## 1142 1630.8140 422.9651
## 1143 1630.8140 422.9651
## 1144 1630.8140 422.9651
## 1145 1630.8140 422.9651
## 1146 1630.8140 422.9651
## 1147 1630.8140 422.9651
## 1148 1630.8140 422.9651
## 1149 1630.8140 422.9651
## 1150 1630.8140 422.9651
## 1151 1630.8140 422.9651
## 1152 1630.8140 422.9651
## 1153 2494.1860 5161.0465
## 1154 2494.1860 5161.0465
## 1155 2494.1860 5161.0465
## 1156 2494.1860 5161.0465
## 1157 2494.1860 5161.0465
## 1158 2494.1860 5161.0465
## 1159 2494.1860 5161.0465
## 1160 2494.1860 5161.0465
## 1161 2494.1860 5161.0465
## 1162 2494.1860 5161.0465
## 1163 2494.1860 5161.0465
## 1164 2494.1860 5161.0465
## 1165 2494.1860 5161.0465
## 1166 2494.1860 5161.0465
## 1167 2494.1860 5161.0465
## 1168 2494.1860 5161.0465
## 1169 2494.1860 5161.0465
## 1170 2494.1860 5161.0465
## 1171 2494.1860 5161.0465
## 1172 2494.1860 5161.0465
## 1173 2494.1860 5161.0465
## 1174 2494.1860 5161.0465
## 1175 2494.1860 5161.0465
## 1176 2494.1860 5161.0465
## 1177 1350.0000 6573.8372
## 1178 1350.0000 6573.8372
## 1179 1350.0000 6573.8372
## 1180 1350.0000 6573.8372
## 1181 1350.0000 6573.8372
## 1182 1350.0000 6573.8372
## 1183 1350.0000 6573.8372
## 1184 1350.0000 6573.8372
## 1185 1350.0000 6573.8372
## 1186 1350.0000 6573.8372
## 1187 1350.0000 6573.8372
## 1188 1350.0000 6573.8372
## 1189 1350.0000 6573.8372
## 1190 1350.0000 6573.8372
## 1191 1350.0000 6573.8372
## 1192 1350.0000 6573.8372
## 1193 1350.0000 6573.8372
## 1194 1350.0000 6573.8372
## 1195 1350.0000 6573.8372
## 1196 1350.0000 6573.8372
## 1197 1350.0000 6573.8372
## 1198 1350.0000 6573.8372
## 1199 1350.0000 6573.8372
## 1200 1350.0000 6573.8372
## 1201 282.5581 334.8837
## 1202 282.5581 334.8837
## 1203 282.5581 334.8837
## 1204 282.5581 334.8837
## 1205 282.5581 334.8837
## 1206 282.5581 334.8837
## 1207 282.5581 334.8837
## 1208 282.5581 334.8837
## 1209 282.5581 334.8837
## 1210 282.5581 334.8837
## 1211 282.5581 334.8837
## 1212 282.5581 334.8837
## 1213 282.5581 334.8837
## 1214 282.5581 334.8837
## 1215 282.5581 334.8837
## 1216 282.5581 334.8837
## 1217 282.5581 334.8837
## 1218 282.5581 334.8837
## 1219 282.5581 334.8837
## 1220 282.5581 334.8837
## 1221 282.5581 334.8837
## 1222 282.5581 334.8837
## 1223 282.5581 334.8837
## 1224 282.5581 334.8837
## 1225 0.0000 3702.9070
## 1226 0.0000 3702.9070
## 1227 0.0000 3702.9070
## 1228 0.0000 3702.9070
## 1229 0.0000 3702.9070
## 1230 0.0000 3702.9070
## 1231 0.0000 3702.9070
## 1232 0.0000 3702.9070
## 1233 0.0000 3702.9070
## 1234 0.0000 3702.9070
## 1235 0.0000 3702.9070
## 1236 0.0000 3702.9070
## 1237 0.0000 3702.9070
## 1238 0.0000 3702.9070
## 1239 0.0000 3702.9070
## 1240 0.0000 3702.9070
## 1241 0.0000 3702.9070
## 1242 0.0000 3702.9070
## 1243 0.0000 3702.9070
## 1244 0.0000 3702.9070
## 1245 0.0000 3702.9070
## 1246 0.0000 3702.9070
## 1247 0.0000 3702.9070
## 1248 0.0000 3702.9070
## 1249 0.0000 1988.3721
## 1250 0.0000 1988.3721
## 1251 0.0000 1988.3721
## 1252 0.0000 1988.3721
## 1253 0.0000 1988.3721
## 1254 0.0000 1988.3721
## 1255 0.0000 1988.3721
## 1256 0.0000 1988.3721
## 1257 0.0000 1988.3721
## 1258 0.0000 1988.3721
## 1259 0.0000 1988.3721
## 1260 0.0000 1988.3721
## 1261 0.0000 1988.3721
## 1262 0.0000 1988.3721
## 1263 0.0000 1988.3721
## 1264 0.0000 1988.3721
## 1265 0.0000 1988.3721
## 1266 0.0000 1988.3721
## 1267 0.0000 1988.3721
## 1268 0.0000 1988.3721
## 1269 0.0000 1988.3721
## 1270 0.0000 1988.3721
## 1271 0.0000 1988.3721
## 1272 0.0000 1988.3721
## 1273 0.0000 1883.7209
## 1274 0.0000 1883.7209
## 1275 0.0000 1883.7209
## 1276 0.0000 1883.7209
## 1277 0.0000 1883.7209
## 1278 0.0000 1883.7209
## 1279 0.0000 1883.7209
## 1280 0.0000 1883.7209
## 1281 0.0000 1883.7209
## 1282 0.0000 1883.7209
## 1283 0.0000 1883.7209
## 1284 0.0000 1883.7209
## 1285 0.0000 1883.7209
## 1286 0.0000 1883.7209
## 1287 0.0000 1883.7209
## 1288 0.0000 1883.7209
## 1289 0.0000 1883.7209
## 1290 0.0000 1883.7209
## 1291 0.0000 1883.7209
## 1292 0.0000 1883.7209
## 1293 0.0000 1883.7209
## 1294 0.0000 1883.7209
## 1295 0.0000 1883.7209
## 1296 0.0000 1883.7209
## 1297 0.0000 911.3372
## 1298 0.0000 911.3372
## 1299 0.0000 911.3372
## 1300 0.0000 911.3372
## 1301 0.0000 911.3372
## 1302 0.0000 911.3372
## 1303 0.0000 911.3372
## 1304 0.0000 911.3372
## 1305 0.0000 911.3372
## 1306 0.0000 911.3372
## 1307 0.0000 911.3372
## 1308 0.0000 911.3372
## 1309 0.0000 911.3372
## 1310 0.0000 911.3372
## 1311 0.0000 911.3372
## 1312 0.0000 911.3372
## 1313 0.0000 911.3372
## 1314 0.0000 911.3372
## 1315 0.0000 911.3372
## 1316 0.0000 911.3372
## 1317 0.0000 911.3372
## 1318 0.0000 911.3372
## 1319 0.0000 911.3372
## 1320 0.0000 911.3372
## 1321 545.0581 0.0000
## 1322 545.0581 0.0000
## 1323 545.0581 0.0000
## 1324 545.0581 0.0000
## 1325 545.0581 0.0000
## 1326 545.0581 0.0000
## 1327 545.0581 0.0000
## 1328 545.0581 0.0000
## 1329 545.0581 0.0000
## 1330 545.0581 0.0000
## 1331 545.0581 0.0000
## 1332 545.0581 0.0000
## 1333 545.0581 0.0000
## 1334 545.0581 0.0000
## 1335 545.0581 0.0000
## 1336 545.0581 0.0000
## 1337 545.0581 0.0000
## 1338 545.0581 0.0000
## 1339 545.0581 0.0000
## 1340 545.0581 0.0000
## 1341 545.0581 0.0000
## 1342 545.0581 0.0000
## 1343 545.0581 0.0000
## 1344 545.0581 0.0000
## 1345 2494.1860 5161.0465
## 1346 2494.1860 5161.0465
## 1347 2494.1860 5161.0465
## 1348 2494.1860 5161.0465
## 1349 2494.1860 5161.0465
## 1350 2494.1860 5161.0465
## 1351 2494.1860 5161.0465
## 1352 2494.1860 5161.0465
## 1353 2494.1860 5161.0465
## 1354 2494.1860 5161.0465
## 1355 2494.1860 5161.0465
## 1356 2494.1860 5161.0465
## 1357 2494.1860 5161.0465
## 1358 2494.1860 5161.0465
## 1359 2494.1860 5161.0465
## 1360 2494.1860 5161.0465
## 1361 2494.1860 5161.0465
## 1362 2494.1860 5161.0465
## 1363 2494.1860 5161.0465
## 1364 2494.1860 5161.0465
## 1365 2494.1860 5161.0465
## 1366 2494.1860 5161.0465
## 1367 2494.1860 5161.0465
## 1368 2494.1860 5161.0465
## 1369 2100.0000 1768.6047
## 1370 2100.0000 1768.6047
## 1371 2100.0000 1768.6047
## 1372 2100.0000 1768.6047
## 1373 2100.0000 1768.6047
## 1374 2100.0000 1768.6047
## 1375 2100.0000 1768.6047
## 1376 2100.0000 1768.6047
## 1377 2100.0000 1768.6047
## 1378 2100.0000 1768.6047
## 1379 2100.0000 1768.6047
## 1380 2100.0000 1768.6047
## 1381 2100.0000 1768.6047
## 1382 2100.0000 1768.6047
## 1383 2100.0000 1768.6047
## 1384 2100.0000 1768.6047
## 1385 2100.0000 1768.6047
## 1386 2100.0000 1768.6047
## 1387 2100.0000 1768.6047
## 1388 2100.0000 1768.6047
## 1389 2100.0000 1768.6047
## 1390 2100.0000 1768.6047
## 1391 2100.0000 1768.6047
## 1392 2100.0000 1768.6047
## 1393 526.7442 875.5814
## 1394 526.7442 875.5814
## 1395 526.7442 875.5814
## 1396 526.7442 875.5814
## 1397 526.7442 875.5814
## 1398 526.7442 875.5814
## 1399 526.7442 875.5814
## 1400 526.7442 875.5814
## 1401 526.7442 875.5814
## 1402 526.7442 875.5814
## 1403 526.7442 875.5814
## 1404 526.7442 875.5814
## 1405 526.7442 875.5814
## 1406 526.7442 875.5814
## 1407 526.7442 875.5814
## 1408 526.7442 875.5814
## 1409 526.7442 875.5814
## 1410 526.7442 875.5814
## 1411 526.7442 875.5814
## 1412 526.7442 875.5814
## 1413 526.7442 875.5814
## 1414 526.7442 875.5814
## 1415 526.7442 875.5814
## 1416 526.7442 875.5814
## 1417 837.2093 2743.6047
## 1418 837.2093 2743.6047
## 1419 837.2093 2743.6047
## 1420 837.2093 2743.6047
## 1421 837.2093 2743.6047
## 1422 837.2093 2743.6047
## 1423 837.2093 2743.6047
## 1424 837.2093 2743.6047
## 1425 837.2093 2743.6047
## 1426 837.2093 2743.6047
## 1427 837.2093 2743.6047
## 1428 837.2093 2743.6047
## 1429 837.2093 2743.6047
## 1430 837.2093 2743.6047
## 1431 837.2093 2743.6047
## 1432 837.2093 2743.6047
## 1433 837.2093 2743.6047
## 1434 837.2093 2743.6047
## 1435 837.2093 2743.6047
## 1436 837.2093 2743.6047
## 1437 837.2093 2743.6047
## 1438 837.2093 2743.6047
## 1439 837.2093 2743.6047
## 1440 837.2093 2743.6047
## 1441 0.0000 1273.2558
## 1442 0.0000 1273.2558
## 1443 0.0000 1273.2558
## 1444 0.0000 1273.2558
## 1445 0.0000 1273.2558
## 1446 0.0000 1273.2558
## 1447 0.0000 1273.2558
## 1448 0.0000 1273.2558
## 1449 0.0000 1273.2558
## 1450 0.0000 1273.2558
## 1451 0.0000 1273.2558
## 1452 0.0000 1273.2558
## 1453 0.0000 1273.2558
## 1454 0.0000 1273.2558
## 1455 0.0000 1273.2558
## 1456 0.0000 1273.2558
## 1457 0.0000 1273.2558
## 1458 0.0000 1273.2558
## 1459 0.0000 1273.2558
## 1460 0.0000 1273.2558
## 1461 0.0000 1273.2558
## 1462 0.0000 1273.2558
## 1463 0.0000 1273.2558
## 1464 0.0000 1273.2558
## 1465 0.0000 3697.6744
## 1466 0.0000 3697.6744
## 1467 0.0000 3697.6744
## 1468 0.0000 3697.6744
## 1469 0.0000 3697.6744
## 1470 0.0000 3697.6744
## 1471 0.0000 3697.6744
## 1472 0.0000 3697.6744
## 1473 0.0000 3697.6744
## 1474 0.0000 3697.6744
## 1475 0.0000 3697.6744
## 1476 0.0000 3697.6744
## 1477 0.0000 3697.6744
## 1478 0.0000 3697.6744
## 1479 0.0000 3697.6744
## 1480 0.0000 3697.6744
## 1481 0.0000 3697.6744
## 1482 0.0000 3697.6744
## 1483 0.0000 3697.6744
## 1484 0.0000 3697.6744
## 1485 0.0000 3697.6744
## 1486 0.0000 3697.6744
## 1487 0.0000 3697.6744
## 1488 0.0000 3697.6744
## 1489 545.0581 244.1860
## 1490 545.0581 244.1860
## 1491 545.0581 244.1860
## 1492 545.0581 244.1860
## 1493 545.0581 244.1860
## 1494 545.0581 244.1860
## 1495 545.0581 244.1860
## 1496 545.0581 244.1860
## 1497 545.0581 244.1860
## 1498 545.0581 244.1860
## 1499 545.0581 244.1860
## 1500 545.0581 244.1860
## 1501 545.0581 244.1860
## 1502 545.0581 244.1860
## 1503 545.0581 244.1860
## 1504 545.0581 244.1860
## 1505 545.0581 244.1860
## 1506 545.0581 244.1860
## 1507 545.0581 244.1860
## 1508 545.0581 244.1860
## 1509 545.0581 244.1860
## 1510 545.0581 244.1860
## 1511 545.0581 244.1860
## 1512 545.0581 244.1860
## 1513 1212.2093 414.2442
## 1514 1212.2093 414.2442
## 1515 1212.2093 414.2442
## 1516 1212.2093 414.2442
## 1517 1212.2093 414.2442
## 1518 1212.2093 414.2442
## 1519 1212.2093 414.2442
## 1520 1212.2093 414.2442
## 1521 1212.2093 414.2442
## 1522 1212.2093 414.2442
## 1523 1212.2093 414.2442
## 1524 1212.2093 414.2442
## 1525 1212.2093 414.2442
## 1526 1212.2093 414.2442
## 1527 1212.2093 414.2442
## 1528 1212.2093 414.2442
## 1529 1212.2093 414.2442
## 1530 1212.2093 414.2442
## 1531 1212.2093 414.2442
## 1532 1212.2093 414.2442
## 1533 1212.2093 414.2442
## 1534 1212.2093 414.2442
## 1535 1212.2093 414.2442
## 1536 1212.2093 414.2442
## 1537 2494.1860 5161.0465
## 1538 2494.1860 5161.0465
## 1539 2494.1860 5161.0465
## 1540 2494.1860 5161.0465
## 1541 2494.1860 5161.0465
## 1542 2494.1860 5161.0465
## 1543 2494.1860 5161.0465
## 1544 2494.1860 5161.0465
## 1545 2494.1860 5161.0465
## 1546 2494.1860 5161.0465
## 1547 2494.1860 5161.0465
## 1548 2494.1860 5161.0465
## 1549 2494.1860 5161.0465
## 1550 2494.1860 5161.0465
## 1551 2494.1860 5161.0465
## 1552 2494.1860 5161.0465
## 1553 2494.1860 5161.0465
## 1554 2494.1860 5161.0465
## 1555 2494.1860 5161.0465
## 1556 2494.1860 5161.0465
## 1557 2494.1860 5161.0465
## 1558 2494.1860 5161.0465
## 1559 2494.1860 5161.0465
## 1560 2494.1860 5161.0465
## 1561 129.0698 3347.0930
## 1562 129.0698 3347.0930
## 1563 129.0698 3347.0930
## 1564 129.0698 3347.0930
## 1565 129.0698 3347.0930
## 1566 129.0698 3347.0930
## 1567 129.0698 3347.0930
## 1568 129.0698 3347.0930
## 1569 129.0698 3347.0930
## 1570 129.0698 3347.0930
## 1571 129.0698 3347.0930
## 1572 129.0698 3347.0930
## 1573 129.0698 3347.0930
## 1574 129.0698 3347.0930
## 1575 129.0698 3347.0930
## 1576 129.0698 3347.0930
## 1577 129.0698 3347.0930
## 1578 129.0698 3347.0930
## 1579 129.0698 3347.0930
## 1580 129.0698 3347.0930
## 1581 129.0698 3347.0930
## 1582 129.0698 3347.0930
## 1583 129.0698 3347.0930
## 1584 129.0698 3347.0930
## 1585 282.5581 3169.1860
## 1586 282.5581 3169.1860
## 1587 282.5581 3169.1860
## 1588 282.5581 3169.1860
## 1589 282.5581 3169.1860
## 1590 282.5581 3169.1860
## 1591 282.5581 3169.1860
## 1592 282.5581 3169.1860
## 1593 282.5581 3169.1860
## 1594 282.5581 3169.1860
## 1595 282.5581 3169.1860
## 1596 282.5581 3169.1860
## 1597 282.5581 3169.1860
## 1598 282.5581 3169.1860
## 1599 282.5581 3169.1860
## 1600 282.5581 3169.1860
## 1601 282.5581 3169.1860
## 1602 282.5581 3169.1860
## 1603 282.5581 3169.1860
## 1604 282.5581 3169.1860
## 1605 282.5581 3169.1860
## 1606 282.5581 3169.1860
## 1607 282.5581 3169.1860
## 1608 282.5581 3169.1860
## 1609 0.0000 650.5814
## 1610 0.0000 650.5814
## 1611 0.0000 650.5814
## 1612 0.0000 650.5814
## 1613 0.0000 650.5814
## 1614 0.0000 650.5814
## 1615 0.0000 650.5814
## 1616 0.0000 650.5814
## 1617 0.0000 650.5814
## 1618 0.0000 650.5814
## 1619 0.0000 650.5814
## 1620 0.0000 650.5814
## 1621 0.0000 650.5814
## 1622 0.0000 650.5814
## 1623 0.0000 650.5814
## 1624 0.0000 650.5814
## 1625 0.0000 650.5814
## 1626 0.0000 650.5814
## 1627 0.0000 650.5814
## 1628 0.0000 650.5814
## 1629 0.0000 650.5814
## 1630 0.0000 650.5814
## 1631 0.0000 650.5814
## 1632 0.0000 650.5814
## 1633 0.0000 218.0233
## 1634 0.0000 218.0233
## 1635 0.0000 218.0233
## 1636 0.0000 218.0233
## 1637 0.0000 218.0233
## 1638 0.0000 218.0233
## 1639 0.0000 218.0233
## 1640 0.0000 218.0233
## 1641 0.0000 218.0233
## 1642 0.0000 218.0233
## 1643 0.0000 218.0233
## 1644 0.0000 218.0233
## 1645 0.0000 218.0233
## 1646 0.0000 218.0233
## 1647 0.0000 218.0233
## 1648 0.0000 218.0233
## 1649 0.0000 218.0233
## 1650 0.0000 218.0233
## 1651 0.0000 218.0233
## 1652 0.0000 218.0233
## 1653 0.0000 218.0233
## 1654 0.0000 218.0233
## 1655 0.0000 218.0233
## 1656 0.0000 218.0233
## 1657 1090.1163 218.0233
## 1658 1090.1163 218.0233
## 1659 1090.1163 218.0233
## 1660 1090.1163 218.0233
## 1661 1090.1163 218.0233
## 1662 1090.1163 218.0233
## 1663 1090.1163 218.0233
## 1664 1090.1163 218.0233
## 1665 1090.1163 218.0233
## 1666 1090.1163 218.0233
## 1667 1090.1163 218.0233
## 1668 1090.1163 218.0233
## 1669 1090.1163 218.0233
## 1670 1090.1163 218.0233
## 1671 1090.1163 218.0233
## 1672 1090.1163 218.0233
## 1673 1090.1163 218.0233
## 1674 1090.1163 218.0233
## 1675 1090.1163 218.0233
## 1676 1090.1163 218.0233
## 1677 1090.1163 218.0233
## 1678 1090.1163 218.0233
## 1679 1090.1163 218.0233
## 1680 1090.1163 218.0233
## 1681 545.0581 0.0000
## 1682 545.0581 0.0000
## 1683 545.0581 0.0000
## 1684 545.0581 0.0000
## 1685 545.0581 0.0000
## 1686 545.0581 0.0000
## 1687 545.0581 0.0000
## 1688 545.0581 0.0000
## 1689 545.0581 0.0000
## 1690 545.0581 0.0000
## 1691 545.0581 0.0000
## 1692 545.0581 0.0000
## 1693 545.0581 0.0000
## 1694 545.0581 0.0000
## 1695 545.0581 0.0000
## 1696 545.0581 0.0000
## 1697 545.0581 0.0000
## 1698 545.0581 0.0000
## 1699 545.0581 0.0000
## 1700 545.0581 0.0000
## 1701 545.0581 0.0000
## 1702 545.0581 0.0000
## 1703 545.0581 0.0000
## 1704 545.0581 0.0000
## 1705 545.0581 436.0465
## 1706 545.0581 436.0465
## 1707 545.0581 436.0465
## 1708 545.0581 436.0465
## 1709 545.0581 436.0465
## 1710 545.0581 436.0465
## 1711 545.0581 436.0465
## 1712 545.0581 436.0465
## 1713 545.0581 436.0465
## 1714 545.0581 436.0465
## 1715 545.0581 436.0465
## 1716 545.0581 436.0465
## 1717 545.0581 436.0465
## 1718 545.0581 436.0465
## 1719 545.0581 436.0465
## 1720 545.0581 436.0465
## 1721 545.0581 436.0465
## 1722 545.0581 436.0465
## 1723 545.0581 436.0465
## 1724 545.0581 436.0465
## 1725 545.0581 436.0465
## 1726 545.0581 436.0465
## 1727 545.0581 436.0465
## 1728 545.0581 436.0465
## 1729 2494.1860 5161.0465
## 1730 2494.1860 5161.0465
## 1731 2494.1860 5161.0465
## 1732 2494.1860 5161.0465
## 1733 2494.1860 5161.0465
## 1734 2494.1860 5161.0465
## 1735 2494.1860 5161.0465
## 1736 2494.1860 5161.0465
## 1737 2494.1860 5161.0465
## 1738 2494.1860 5161.0465
## 1739 2494.1860 5161.0465
## 1740 2494.1860 5161.0465
## 1741 2494.1860 5161.0465
## 1742 2494.1860 5161.0465
## 1743 2494.1860 5161.0465
## 1744 2494.1860 5161.0465
## 1745 2494.1860 5161.0465
## 1746 2494.1860 5161.0465
## 1747 2494.1860 5161.0465
## 1748 2494.1860 5161.0465
## 1749 2494.1860 5161.0465
## 1750 2494.1860 5161.0465
## 1751 2494.1860 5161.0465
## 1752 2494.1860 5161.0465
## 1753 2283.1395 4890.6977
## 1754 2283.1395 4890.6977
## 1755 2283.1395 4890.6977
## 1756 2283.1395 4890.6977
## 1757 2283.1395 4890.6977
## 1758 2283.1395 4890.6977
## 1759 2283.1395 4890.6977
## 1760 2283.1395 4890.6977
## 1761 2283.1395 4890.6977
## 1762 2283.1395 4890.6977
## 1763 2283.1395 4890.6977
## 1764 2283.1395 4890.6977
## 1765 2283.1395 4890.6977
## 1766 2283.1395 4890.6977
## 1767 2283.1395 4890.6977
## 1768 2283.1395 4890.6977
## 1769 2283.1395 4890.6977
## 1770 2283.1395 4890.6977
## 1771 2283.1395 4890.6977
## 1772 2283.1395 4890.6977
## 1773 2283.1395 4890.6977
## 1774 2283.1395 4890.6977
## 1775 2283.1395 4890.6977
## 1776 2283.1395 4890.6977
## 1777 282.5581 570.3488
## 1778 282.5581 570.3488
## 1779 282.5581 570.3488
## 1780 282.5581 570.3488
## 1781 282.5581 570.3488
## 1782 282.5581 570.3488
## 1783 282.5581 570.3488
## 1784 282.5581 570.3488
## 1785 282.5581 570.3488
## 1786 282.5581 570.3488
## 1787 282.5581 570.3488
## 1788 282.5581 570.3488
## 1789 282.5581 570.3488
## 1790 282.5581 570.3488
## 1791 282.5581 570.3488
## 1792 282.5581 570.3488
## 1793 282.5581 570.3488
## 1794 282.5581 570.3488
## 1795 282.5581 570.3488
## 1796 282.5581 570.3488
## 1797 282.5581 570.3488
## 1798 282.5581 570.3488
## 1799 282.5581 570.3488
## 1800 282.5581 570.3488
## 1801 0.0000 2830.8140
## 1802 0.0000 2830.8140
## 1803 0.0000 2830.8140
## 1804 0.0000 2830.8140
## 1805 0.0000 2830.8140
## 1806 0.0000 2830.8140
## 1807 0.0000 2830.8140
## 1808 0.0000 2830.8140
## 1809 0.0000 2830.8140
## 1810 0.0000 2830.8140
## 1811 0.0000 2830.8140
## 1812 0.0000 2830.8140
## 1813 0.0000 2830.8140
## 1814 0.0000 2830.8140
## 1815 0.0000 2830.8140
## 1816 0.0000 2830.8140
## 1817 0.0000 2830.8140
## 1818 0.0000 2830.8140
## 1819 0.0000 2830.8140
## 1820 0.0000 2830.8140
## 1821 0.0000 2830.8140
## 1822 0.0000 2830.8140
## 1823 0.0000 2830.8140
## 1824 0.0000 2830.8140
## 1825 1090.1163 1735.4651
## 1826 1090.1163 1735.4651
## 1827 1090.1163 1735.4651
## 1828 1090.1163 1735.4651
## 1829 1090.1163 1735.4651
## 1830 1090.1163 1735.4651
## 1831 1090.1163 1735.4651
## 1832 1090.1163 1735.4651
## 1833 1090.1163 1735.4651
## 1834 1090.1163 1735.4651
## 1835 1090.1163 1735.4651
## 1836 1090.1163 1735.4651
## 1837 1090.1163 1735.4651
## 1838 1090.1163 1735.4651
## 1839 1090.1163 1735.4651
## 1840 1090.1163 1735.4651
## 1841 1090.1163 1735.4651
## 1842 1090.1163 1735.4651
## 1843 1090.1163 1735.4651
## 1844 1090.1163 1735.4651
## 1845 1090.1163 1735.4651
## 1846 1090.1163 1735.4651
## 1847 1090.1163 1735.4651
## 1848 1090.1163 1735.4651
## 1849 1875.0000 2040.6977
## 1850 1875.0000 2040.6977
## 1851 1875.0000 2040.6977
## 1852 1875.0000 2040.6977
## 1853 1875.0000 2040.6977
## 1854 1875.0000 2040.6977
## 1855 1875.0000 2040.6977
## 1856 1875.0000 2040.6977
## 1857 1875.0000 2040.6977
## 1858 1875.0000 2040.6977
## 1859 1875.0000 2040.6977
## 1860 1875.0000 2040.6977
## 1861 1875.0000 2040.6977
## 1862 1875.0000 2040.6977
## 1863 1875.0000 2040.6977
## 1864 1875.0000 2040.6977
## 1865 1875.0000 2040.6977
## 1866 1875.0000 2040.6977
## 1867 1875.0000 2040.6977
## 1868 1875.0000 2040.6977
## 1869 1875.0000 2040.6977
## 1870 1875.0000 2040.6977
## 1871 1875.0000 2040.6977
## 1872 1875.0000 2040.6977
## 1873 1521.8023 0.0000
## 1874 1521.8023 0.0000
## 1875 1521.8023 0.0000
## 1876 1521.8023 0.0000
## 1877 1521.8023 0.0000
## 1878 1521.8023 0.0000
## 1879 1521.8023 0.0000
## 1880 1521.8023 0.0000
## 1881 1521.8023 0.0000
## 1882 1521.8023 0.0000
## 1883 1521.8023 0.0000
## 1884 1521.8023 0.0000
## 1885 1521.8023 0.0000
## 1886 1521.8023 0.0000
## 1887 1521.8023 0.0000
## 1888 1521.8023 0.0000
## 1889 1521.8023 0.0000
## 1890 1521.8023 0.0000
## 1891 1521.8023 0.0000
## 1892 1521.8023 0.0000
## 1893 1521.8023 0.0000
## 1894 1521.8023 0.0000
## 1895 1521.8023 0.0000
## 1896 1521.8023 0.0000
## 1897 545.0581 453.4884
## 1898 545.0581 453.4884
## 1899 545.0581 453.4884
## 1900 545.0581 453.4884
## 1901 545.0581 453.4884
## 1902 545.0581 453.4884
## 1903 545.0581 453.4884
## 1904 545.0581 453.4884
## 1905 545.0581 453.4884
## 1906 545.0581 453.4884
## 1907 545.0581 453.4884
## 1908 545.0581 453.4884
## 1909 545.0581 453.4884
## 1910 545.0581 453.4884
## 1911 545.0581 453.4884
## 1912 545.0581 453.4884
## 1913 545.0581 453.4884
## 1914 545.0581 453.4884
## 1915 545.0581 453.4884
## 1916 545.0581 453.4884
## 1917 545.0581 453.4884
## 1918 545.0581 453.4884
## 1919 545.0581 453.4884
## 1920 545.0581 453.4884
## 1921 2494.1860 5161.0465
## 1922 2494.1860 5161.0465
## 1923 2494.1860 5161.0465
## 1924 2494.1860 5161.0465
## 1925 2494.1860 5161.0465
## 1926 2494.1860 5161.0465
## 1927 2494.1860 5161.0465
## 1928 2494.1860 5161.0465
## 1929 2494.1860 5161.0465
## 1930 2494.1860 5161.0465
## 1931 2494.1860 5161.0465
## 1932 2494.1860 5161.0465
## 1933 2494.1860 5161.0465
## 1934 2494.1860 5161.0465
## 1935 2494.1860 5161.0465
## 1936 2494.1860 5161.0465
## 1937 2494.1860 5161.0465
## 1938 2494.1860 5161.0465
## 1939 2494.1860 5161.0465
## 1940 2494.1860 5161.0465
## 1941 2494.1860 5161.0465
## 1942 2494.1860 5161.0465
## 1943 2494.1860 5161.0465
## 1944 2494.1860 5161.0465
## 1945 0.0000 0.0000
## 1946 0.0000 0.0000
## 1947 0.0000 0.0000
## 1948 0.0000 0.0000
## 1949 0.0000 0.0000
## 1950 0.0000 0.0000
## 1951 0.0000 0.0000
## 1952 0.0000 0.0000
## 1953 0.0000 0.0000
## 1954 0.0000 0.0000
## 1955 0.0000 0.0000
## 1956 0.0000 0.0000
## 1957 0.0000 0.0000
## 1958 0.0000 0.0000
## 1959 0.0000 0.0000
## 1960 0.0000 0.0000
## 1961 0.0000 0.0000
## 1962 0.0000 0.0000
## 1963 0.0000 0.0000
## 1964 0.0000 0.0000
## 1965 0.0000 0.0000
## 1966 0.0000 0.0000
## 1967 0.0000 0.0000
## 1968 0.0000 0.0000
## 1969 0.0000 1854.0698
## 1970 0.0000 1854.0698
## 1971 0.0000 1854.0698
## 1972 0.0000 1854.0698
## 1973 0.0000 1854.0698
## 1974 0.0000 1854.0698
## 1975 0.0000 1854.0698
## 1976 0.0000 1854.0698
## 1977 0.0000 1854.0698
## 1978 0.0000 1854.0698
## 1979 0.0000 1854.0698
## 1980 0.0000 1854.0698
## 1981 0.0000 1854.0698
## 1982 0.0000 1854.0698
## 1983 0.0000 1854.0698
## 1984 0.0000 1854.0698
## 1985 0.0000 1854.0698
## 1986 0.0000 1854.0698
## 1987 0.0000 1854.0698
## 1988 0.0000 1854.0698
## 1989 0.0000 1854.0698
## 1990 0.0000 1854.0698
## 1991 0.0000 1854.0698
## 1992 0.0000 1854.0698
## 1993 0.0000 1852.3256
## 1994 0.0000 1852.3256
## 1995 0.0000 1852.3256
## 1996 0.0000 1852.3256
## 1997 0.0000 1852.3256
## 1998 0.0000 1852.3256
## 1999 0.0000 1852.3256
## 2000 0.0000 1852.3256
## 2001 0.0000 1852.3256
## 2002 0.0000 1852.3256
## 2003 0.0000 1852.3256
## 2004 0.0000 1852.3256
## 2005 0.0000 1852.3256
## 2006 0.0000 1852.3256
## 2007 0.0000 1852.3256
## 2008 0.0000 1852.3256
## 2009 0.0000 1852.3256
## 2010 0.0000 1852.3256
## 2011 0.0000 1852.3256
## 2012 0.0000 1852.3256
## 2013 0.0000 1852.3256
## 2014 0.0000 1852.3256
## 2015 0.0000 1852.3256
## 2016 0.0000 1852.3256
## 2017 0.0000 2572.6744
## 2018 0.0000 2572.6744
## 2019 0.0000 2572.6744
## 2020 0.0000 2572.6744
## 2021 0.0000 2572.6744
## 2022 0.0000 2572.6744
## 2023 0.0000 2572.6744
## 2024 0.0000 2572.6744
## 2025 0.0000 2572.6744
## 2026 0.0000 2572.6744
## 2027 0.0000 2572.6744
## 2028 0.0000 2572.6744
## 2029 0.0000 2572.6744
## 2030 0.0000 2572.6744
## 2031 0.0000 2572.6744
## 2032 0.0000 2572.6744
## 2033 0.0000 2572.6744
## 2034 0.0000 2572.6744
## 2035 0.0000 2572.6744
## 2036 0.0000 2572.6744
## 2037 0.0000 2572.6744
## 2038 0.0000 2572.6744
## 2039 0.0000 2572.6744
## 2040 0.0000 2572.6744
## 2041 0.0000 392.4419
## 2042 0.0000 392.4419
## 2043 0.0000 392.4419
## 2044 0.0000 392.4419
## 2045 0.0000 392.4419
## 2046 0.0000 392.4419
## 2047 0.0000 392.4419
## 2048 0.0000 392.4419
## 2049 0.0000 392.4419
## 2050 0.0000 392.4419
## 2051 0.0000 392.4419
## 2052 0.0000 392.4419
## 2053 0.0000 392.4419
## 2054 0.0000 392.4419
## 2055 0.0000 392.4419
## 2056 0.0000 392.4419
## 2057 0.0000 392.4419
## 2058 0.0000 392.4419
## 2059 0.0000 392.4419
## 2060 0.0000 392.4419
## 2061 0.0000 392.4419
## 2062 0.0000 392.4419
## 2063 0.0000 392.4419
## 2064 0.0000 392.4419
## 2065 545.0581 0.0000
## 2066 545.0581 0.0000
## 2067 545.0581 0.0000
## 2068 545.0581 0.0000
## 2069 545.0581 0.0000
## 2070 545.0581 0.0000
## 2071 545.0581 0.0000
## 2072 545.0581 0.0000
## 2073 545.0581 0.0000
## 2074 545.0581 0.0000
## 2075 545.0581 0.0000
## 2076 545.0581 0.0000
## 2077 545.0581 0.0000
## 2078 545.0581 0.0000
## 2079 545.0581 0.0000
## 2080 545.0581 0.0000
## 2081 545.0581 0.0000
## 2082 545.0581 0.0000
## 2083 545.0581 0.0000
## 2084 545.0581 0.0000
## 2085 545.0581 0.0000
## 2086 545.0581 0.0000
## 2087 545.0581 0.0000
## 2088 545.0581 0.0000
## 2089 1630.8140 422.9651
## 2090 1630.8140 422.9651
## 2091 1630.8140 422.9651
## 2092 1630.8140 422.9651
## 2093 1630.8140 422.9651
## 2094 1630.8140 422.9651
## 2095 1630.8140 422.9651
## 2096 1630.8140 422.9651
## 2097 1630.8140 422.9651
## 2098 1630.8140 422.9651
## 2099 1630.8140 422.9651
## 2100 1630.8140 422.9651
## 2101 1630.8140 422.9651
## 2102 1630.8140 422.9651
## 2103 1630.8140 422.9651
## 2104 1630.8140 422.9651
## 2105 1630.8140 422.9651
## 2106 1630.8140 422.9651
## 2107 1630.8140 422.9651
## 2108 1630.8140 422.9651
## 2109 1630.8140 422.9651
## 2110 1630.8140 422.9651
## 2111 1630.8140 422.9651
## 2112 1630.8140 422.9651
## 2113 2494.1860 5161.0465
## 2114 2494.1860 5161.0465
## 2115 2494.1860 5161.0465
## 2116 2494.1860 5161.0465
## 2117 2494.1860 5161.0465
## 2118 2494.1860 5161.0465
## 2119 2494.1860 5161.0465
## 2120 2494.1860 5161.0465
## 2121 2494.1860 5161.0465
## 2122 2494.1860 5161.0465
## 2123 2494.1860 5161.0465
## 2124 2494.1860 5161.0465
## 2125 2494.1860 5161.0465
## 2126 2494.1860 5161.0465
## 2127 2494.1860 5161.0465
## 2128 2494.1860 5161.0465
## 2129 2494.1860 5161.0465
## 2130 2494.1860 5161.0465
## 2131 2494.1860 5161.0465
## 2132 2494.1860 5161.0465
## 2133 2494.1860 5161.0465
## 2134 2494.1860 5161.0465
## 2135 2494.1860 5161.0465
## 2136 2494.1860 5161.0465
## 2137 1220.9302 5720.9302
## 2138 1220.9302 5720.9302
## 2139 1220.9302 5720.9302
## 2140 1220.9302 5720.9302
## 2141 1220.9302 5720.9302
## 2142 1220.9302 5720.9302
## 2143 1220.9302 5720.9302
## 2144 1220.9302 5720.9302
## 2145 1220.9302 5720.9302
## 2146 1220.9302 5720.9302
## 2147 1220.9302 5720.9302
## 2148 1220.9302 5720.9302
## 2149 1220.9302 5720.9302
## 2150 1220.9302 5720.9302
## 2151 1220.9302 5720.9302
## 2152 1220.9302 5720.9302
## 2153 1220.9302 5720.9302
## 2154 1220.9302 5720.9302
## 2155 1220.9302 5720.9302
## 2156 1220.9302 5720.9302
## 2157 1220.9302 5720.9302
## 2158 1220.9302 5720.9302
## 2159 1220.9302 5720.9302
## 2160 1220.9302 5720.9302
## 2161 0.0000 214.5349
## 2162 0.0000 214.5349
## 2163 0.0000 214.5349
## 2164 0.0000 214.5349
## 2165 0.0000 214.5349
## 2166 0.0000 214.5349
## 2167 0.0000 214.5349
## 2168 0.0000 214.5349
## 2169 0.0000 214.5349
## 2170 0.0000 214.5349
## 2171 0.0000 214.5349
## 2172 0.0000 214.5349
## 2173 0.0000 214.5349
## 2174 0.0000 214.5349
## 2175 0.0000 214.5349
## 2176 0.0000 214.5349
## 2177 0.0000 214.5349
## 2178 0.0000 214.5349
## 2179 0.0000 214.5349
## 2180 0.0000 214.5349
## 2181 0.0000 214.5349
## 2182 0.0000 214.5349
## 2183 0.0000 214.5349
## 2184 0.0000 214.5349
## 2185 0.0000 3535.4651
## 2186 0.0000 3535.4651
## 2187 0.0000 3535.4651
## 2188 0.0000 3535.4651
## 2189 0.0000 3535.4651
## 2190 0.0000 3535.4651
## 2191 0.0000 3535.4651
## 2192 0.0000 3535.4651
## 2193 0.0000 3535.4651
## 2194 0.0000 3535.4651
## 2195 0.0000 3535.4651
## 2196 0.0000 3535.4651
## 2197 0.0000 3535.4651
## 2198 0.0000 3535.4651
## 2199 0.0000 3535.4651
## 2200 0.0000 3535.4651
## 2201 0.0000 3535.4651
## 2202 0.0000 3535.4651
## 2203 0.0000 3535.4651
## 2204 0.0000 3535.4651
## 2205 0.0000 3535.4651
## 2206 0.0000 3535.4651
## 2207 0.0000 3535.4651
## 2208 0.0000 3535.4651
## 2209 0.0000 1988.3721
## 2210 0.0000 1988.3721
## 2211 0.0000 1988.3721
## 2212 0.0000 1988.3721
## 2213 0.0000 1988.3721
## 2214 0.0000 1988.3721
## 2215 0.0000 1988.3721
## 2216 0.0000 1988.3721
## 2217 0.0000 1988.3721
## 2218 0.0000 1988.3721
## 2219 0.0000 1988.3721
## 2220 0.0000 1988.3721
## 2221 0.0000 1988.3721
## 2222 0.0000 1988.3721
## 2223 0.0000 1988.3721
## 2224 0.0000 1988.3721
## 2225 0.0000 1988.3721
## 2226 0.0000 1988.3721
## 2227 0.0000 1988.3721
## 2228 0.0000 1988.3721
## 2229 0.0000 1988.3721
## 2230 0.0000 1988.3721
## 2231 0.0000 1988.3721
## 2232 0.0000 1988.3721
## 2233 0.0000 1665.6977
## 2234 0.0000 1665.6977
## 2235 0.0000 1665.6977
## 2236 0.0000 1665.6977
## 2237 0.0000 1665.6977
## 2238 0.0000 1665.6977
## 2239 0.0000 1665.6977
## 2240 0.0000 1665.6977
## 2241 0.0000 1665.6977
## 2242 0.0000 1665.6977
## 2243 0.0000 1665.6977
## 2244 0.0000 1665.6977
## 2245 0.0000 1665.6977
## 2246 0.0000 1665.6977
## 2247 0.0000 1665.6977
## 2248 0.0000 1665.6977
## 2249 0.0000 1665.6977
## 2250 0.0000 1665.6977
## 2251 0.0000 1665.6977
## 2252 0.0000 1665.6977
## 2253 0.0000 1665.6977
## 2254 0.0000 1665.6977
## 2255 0.0000 1665.6977
## 2256 0.0000 1665.6977
## 2257 0.0000 911.3372
## 2258 0.0000 911.3372
## 2259 0.0000 911.3372
## 2260 0.0000 911.3372
## 2261 0.0000 911.3372
## 2262 0.0000 911.3372
## 2263 0.0000 911.3372
## 2264 0.0000 911.3372
## 2265 0.0000 911.3372
## 2266 0.0000 911.3372
## 2267 0.0000 911.3372
## 2268 0.0000 911.3372
## 2269 0.0000 911.3372
## 2270 0.0000 911.3372
## 2271 0.0000 911.3372
## 2272 0.0000 911.3372
## 2273 0.0000 911.3372
## 2274 0.0000 911.3372
## 2275 0.0000 911.3372
## 2276 0.0000 911.3372
## 2277 0.0000 911.3372
## 2278 0.0000 911.3372
## 2279 0.0000 911.3372
## 2280 0.0000 911.3372
## 2281 545.0581 0.0000
## 2282 545.0581 0.0000
## 2283 545.0581 0.0000
## 2284 545.0581 0.0000
## 2285 545.0581 0.0000
## 2286 545.0581 0.0000
## 2287 545.0581 0.0000
## 2288 545.0581 0.0000
## 2289 545.0581 0.0000
## 2290 545.0581 0.0000
## 2291 545.0581 0.0000
## 2292 545.0581 0.0000
## 2293 545.0581 0.0000
## 2294 545.0581 0.0000
## 2295 545.0581 0.0000
## 2296 545.0581 0.0000
## 2297 545.0581 0.0000
## 2298 545.0581 0.0000
## 2299 545.0581 0.0000
## 2300 545.0581 0.0000
## 2301 545.0581 0.0000
## 2302 545.0581 0.0000
## 2303 545.0581 0.0000
## 2304 545.0581 0.0000
## 2305 2494.1860 5161.0465
## 2306 2494.1860 5161.0465
## 2307 2494.1860 5161.0465
## 2308 2494.1860 5161.0465
## 2309 2494.1860 5161.0465
## 2310 2494.1860 5161.0465
## 2311 2494.1860 5161.0465
## 2312 2494.1860 5161.0465
## 2313 2494.1860 5161.0465
## 2314 2494.1860 5161.0465
## 2315 2494.1860 5161.0465
## 2316 2494.1860 5161.0465
## 2317 2494.1860 5161.0465
## 2318 2494.1860 5161.0465
## 2319 2494.1860 5161.0465
## 2320 2494.1860 5161.0465
## 2321 2494.1860 5161.0465
## 2322 2494.1860 5161.0465
## 2323 2494.1860 5161.0465
## 2324 2494.1860 5161.0465
## 2325 2494.1860 5161.0465
## 2326 2494.1860 5161.0465
## 2327 2494.1860 5161.0465
## 2328 2494.1860 5161.0465
## 2329 1970.9302 915.6977
## 2330 1970.9302 915.6977
## 2331 1970.9302 915.6977
## 2332 1970.9302 915.6977
## 2333 1970.9302 915.6977
## 2334 1970.9302 915.6977
## 2335 1970.9302 915.6977
## 2336 1970.9302 915.6977
## 2337 1970.9302 915.6977
## 2338 1970.9302 915.6977
## 2339 1970.9302 915.6977
## 2340 1970.9302 915.6977
## 2341 1970.9302 915.6977
## 2342 1970.9302 915.6977
## 2343 1970.9302 915.6977
## 2344 1970.9302 915.6977
## 2345 1970.9302 915.6977
## 2346 1970.9302 915.6977
## 2347 1970.9302 915.6977
## 2348 1970.9302 915.6977
## 2349 1970.9302 915.6977
## 2350 1970.9302 915.6977
## 2351 1970.9302 915.6977
## 2352 1970.9302 915.6977
## 2353 244.1860 755.2326
## 2354 244.1860 755.2326
## 2355 244.1860 755.2326
## 2356 244.1860 755.2326
## 2357 244.1860 755.2326
## 2358 244.1860 755.2326
## 2359 244.1860 755.2326
## 2360 244.1860 755.2326
## 2361 244.1860 755.2326
## 2362 244.1860 755.2326
## 2363 244.1860 755.2326
## 2364 244.1860 755.2326
## 2365 244.1860 755.2326
## 2366 244.1860 755.2326
## 2367 244.1860 755.2326
## 2368 244.1860 755.2326
## 2369 244.1860 755.2326
## 2370 244.1860 755.2326
## 2371 244.1860 755.2326
## 2372 244.1860 755.2326
## 2373 244.1860 755.2326
## 2374 244.1860 755.2326
## 2375 244.1860 755.2326
## 2376 244.1860 755.2326
## 2377 837.2093 2576.1628
## 2378 837.2093 2576.1628
## 2379 837.2093 2576.1628
## 2380 837.2093 2576.1628
## 2381 837.2093 2576.1628
## 2382 837.2093 2576.1628
## 2383 837.2093 2576.1628
## 2384 837.2093 2576.1628
## 2385 837.2093 2576.1628
## 2386 837.2093 2576.1628
## 2387 837.2093 2576.1628
## 2388 837.2093 2576.1628
## 2389 837.2093 2576.1628
## 2390 837.2093 2576.1628
## 2391 837.2093 2576.1628
## 2392 837.2093 2576.1628
## 2393 837.2093 2576.1628
## 2394 837.2093 2576.1628
## 2395 837.2093 2576.1628
## 2396 837.2093 2576.1628
## 2397 837.2093 2576.1628
## 2398 837.2093 2576.1628
## 2399 837.2093 2576.1628
## 2400 837.2093 2576.1628
## 2401 0.0000 1273.2558
## 2402 0.0000 1273.2558
## 2403 0.0000 1273.2558
## 2404 0.0000 1273.2558
## 2405 0.0000 1273.2558
## 2406 0.0000 1273.2558
## 2407 0.0000 1273.2558
## 2408 0.0000 1273.2558
## 2409 0.0000 1273.2558
## 2410 0.0000 1273.2558
## 2411 0.0000 1273.2558
## 2412 0.0000 1273.2558
## 2413 0.0000 1273.2558
## 2414 0.0000 1273.2558
## 2415 0.0000 1273.2558
## 2416 0.0000 1273.2558
## 2417 0.0000 1273.2558
## 2418 0.0000 1273.2558
## 2419 0.0000 1273.2558
## 2420 0.0000 1273.2558
## 2421 0.0000 1273.2558
## 2422 0.0000 1273.2558
## 2423 0.0000 1273.2558
## 2424 0.0000 1273.2558
## 2425 0.0000 3479.6512
## 2426 0.0000 3479.6512
## 2427 0.0000 3479.6512
## 2428 0.0000 3479.6512
## 2429 0.0000 3479.6512
## 2430 0.0000 3479.6512
## 2431 0.0000 3479.6512
## 2432 0.0000 3479.6512
## 2433 0.0000 3479.6512
## 2434 0.0000 3479.6512
## 2435 0.0000 3479.6512
## 2436 0.0000 3479.6512
## 2437 0.0000 3479.6512
## 2438 0.0000 3479.6512
## 2439 0.0000 3479.6512
## 2440 0.0000 3479.6512
## 2441 0.0000 3479.6512
## 2442 0.0000 3479.6512
## 2443 0.0000 3479.6512
## 2444 0.0000 3479.6512
## 2445 0.0000 3479.6512
## 2446 0.0000 3479.6512
## 2447 0.0000 3479.6512
## 2448 0.0000 3479.6512
## 2449 545.0581 244.1860
## 2450 545.0581 244.1860
## 2451 545.0581 244.1860
## 2452 545.0581 244.1860
## 2453 545.0581 244.1860
## 2454 545.0581 244.1860
## 2455 545.0581 244.1860
## 2456 545.0581 244.1860
## 2457 545.0581 244.1860
## 2458 545.0581 244.1860
## 2459 545.0581 244.1860
## 2460 545.0581 244.1860
## 2461 545.0581 244.1860
## 2462 545.0581 244.1860
## 2463 545.0581 244.1860
## 2464 545.0581 244.1860
## 2465 545.0581 244.1860
## 2466 545.0581 244.1860
## 2467 545.0581 244.1860
## 2468 545.0581 244.1860
## 2469 545.0581 244.1860
## 2470 545.0581 244.1860
## 2471 545.0581 244.1860
## 2472 545.0581 244.1860
## 2473 1212.2093 414.2442
## 2474 1212.2093 414.2442
## 2475 1212.2093 414.2442
## 2476 1212.2093 414.2442
## 2477 1212.2093 414.2442
## 2478 1212.2093 414.2442
## 2479 1212.2093 414.2442
## 2480 1212.2093 414.2442
## 2481 1212.2093 414.2442
## 2482 1212.2093 414.2442
## 2483 1212.2093 414.2442
## 2484 1212.2093 414.2442
## 2485 1212.2093 414.2442
## 2486 1212.2093 414.2442
## 2487 1212.2093 414.2442
## 2488 1212.2093 414.2442
## 2489 1212.2093 414.2442
## 2490 1212.2093 414.2442
## 2491 1212.2093 414.2442
## 2492 1212.2093 414.2442
## 2493 1212.2093 414.2442
## 2494 1212.2093 414.2442
## 2495 1212.2093 414.2442
## 2496 1212.2093 414.2442
## 2497 2494.1860 5161.0465
## 2498 2494.1860 5161.0465
## 2499 2494.1860 5161.0465
## 2500 2494.1860 5161.0465
## 2501 2494.1860 5161.0465
## 2502 2494.1860 5161.0465
## 2503 2494.1860 5161.0465
## 2504 2494.1860 5161.0465
## 2505 2494.1860 5161.0465
## 2506 2494.1860 5161.0465
## 2507 2494.1860 5161.0465
## 2508 2494.1860 5161.0465
## 2509 2494.1860 5161.0465
## 2510 2494.1860 5161.0465
## 2511 2494.1860 5161.0465
## 2512 2494.1860 5161.0465
## 2513 2494.1860 5161.0465
## 2514 2494.1860 5161.0465
## 2515 2494.1860 5161.0465
## 2516 2494.1860 5161.0465
## 2517 2494.1860 5161.0465
## 2518 2494.1860 5161.0465
## 2519 2494.1860 5161.0465
## 2520 2494.1860 5161.0465
## 2521 0.0000 2494.1860
## 2522 0.0000 2494.1860
## 2523 0.0000 2494.1860
## 2524 0.0000 2494.1860
## 2525 0.0000 2494.1860
## 2526 0.0000 2494.1860
## 2527 0.0000 2494.1860
## 2528 0.0000 2494.1860
## 2529 0.0000 2494.1860
## 2530 0.0000 2494.1860
## 2531 0.0000 2494.1860
## 2532 0.0000 2494.1860
## 2533 0.0000 2494.1860
## 2534 0.0000 2494.1860
## 2535 0.0000 2494.1860
## 2536 0.0000 2494.1860
## 2537 0.0000 2494.1860
## 2538 0.0000 2494.1860
## 2539 0.0000 2494.1860
## 2540 0.0000 2494.1860
## 2541 0.0000 2494.1860
## 2542 0.0000 2494.1860
## 2543 0.0000 2494.1860
## 2544 0.0000 2494.1860
## 2545 0.0000 3048.8372
## 2546 0.0000 3048.8372
## 2547 0.0000 3048.8372
## 2548 0.0000 3048.8372
## 2549 0.0000 3048.8372
## 2550 0.0000 3048.8372
## 2551 0.0000 3048.8372
## 2552 0.0000 3048.8372
## 2553 0.0000 3048.8372
## 2554 0.0000 3048.8372
## 2555 0.0000 3048.8372
## 2556 0.0000 3048.8372
## 2557 0.0000 3048.8372
## 2558 0.0000 3048.8372
## 2559 0.0000 3048.8372
## 2560 0.0000 3048.8372
## 2561 0.0000 3048.8372
## 2562 0.0000 3048.8372
## 2563 0.0000 3048.8372
## 2564 0.0000 3048.8372
## 2565 0.0000 3048.8372
## 2566 0.0000 3048.8372
## 2567 0.0000 3048.8372
## 2568 0.0000 3048.8372
## 2569 0.0000 483.1395
## 2570 0.0000 483.1395
## 2571 0.0000 483.1395
## 2572 0.0000 483.1395
## 2573 0.0000 483.1395
## 2574 0.0000 483.1395
## 2575 0.0000 483.1395
## 2576 0.0000 483.1395
## 2577 0.0000 483.1395
## 2578 0.0000 483.1395
## 2579 0.0000 483.1395
## 2580 0.0000 483.1395
## 2581 0.0000 483.1395
## 2582 0.0000 483.1395
## 2583 0.0000 483.1395
## 2584 0.0000 483.1395
## 2585 0.0000 483.1395
## 2586 0.0000 483.1395
## 2587 0.0000 483.1395
## 2588 0.0000 483.1395
## 2589 0.0000 483.1395
## 2590 0.0000 483.1395
## 2591 0.0000 483.1395
## 2592 0.0000 483.1395
## 2593 0.0000 218.0233
## 2594 0.0000 218.0233
## 2595 0.0000 218.0233
## 2596 0.0000 218.0233
## 2597 0.0000 218.0233
## 2598 0.0000 218.0233
## 2599 0.0000 218.0233
## 2600 0.0000 218.0233
## 2601 0.0000 218.0233
## 2602 0.0000 218.0233
## 2603 0.0000 218.0233
## 2604 0.0000 218.0233
## 2605 0.0000 218.0233
## 2606 0.0000 218.0233
## 2607 0.0000 218.0233
## 2608 0.0000 218.0233
## 2609 0.0000 218.0233
## 2610 0.0000 218.0233
## 2611 0.0000 218.0233
## 2612 0.0000 218.0233
## 2613 0.0000 218.0233
## 2614 0.0000 218.0233
## 2615 0.0000 218.0233
## 2616 0.0000 218.0233
## 2617 1090.1163 0.0000
## 2618 1090.1163 0.0000
## 2619 1090.1163 0.0000
## 2620 1090.1163 0.0000
## 2621 1090.1163 0.0000
## 2622 1090.1163 0.0000
## 2623 1090.1163 0.0000
## 2624 1090.1163 0.0000
## 2625 1090.1163 0.0000
## 2626 1090.1163 0.0000
## 2627 1090.1163 0.0000
## 2628 1090.1163 0.0000
## 2629 1090.1163 0.0000
## 2630 1090.1163 0.0000
## 2631 1090.1163 0.0000
## total_metaecosystem_Pca_indiv total_metaecosystem_Spi_indiv
## 1 883.43023 635.75581
## 2 883.43023 635.75581
## 3 883.43023 635.75581
## 4 883.43023 635.75581
## 5 883.43023 635.75581
## 6 883.43023 635.75581
## 7 883.43023 635.75581
## 8 883.43023 635.75581
## 9 883.43023 635.75581
## 10 883.43023 635.75581
## 11 883.43023 635.75581
## 12 883.43023 635.75581
## 13 883.43023 635.75581
## 14 883.43023 635.75581
## 15 883.43023 635.75581
## 16 883.43023 635.75581
## 17 883.43023 635.75581
## 18 883.43023 635.75581
## 19 883.43023 635.75581
## 20 883.43023 635.75581
## 21 883.43023 635.75581
## 22 883.43023 635.75581
## 23 883.43023 635.75581
## 24 883.43023 635.75581
## 25 1854.06977 1055.23256
## 26 1854.06977 1055.23256
## 27 1854.06977 1055.23256
## 28 1854.06977 1055.23256
## 29 1854.06977 1055.23256
## 30 1854.06977 1055.23256
## 31 1854.06977 1055.23256
## 32 1854.06977 1055.23256
## 33 1854.06977 1055.23256
## 34 1854.06977 1055.23256
## 35 1854.06977 1055.23256
## 36 1854.06977 1055.23256
## 37 1854.06977 1055.23256
## 38 1854.06977 1055.23256
## 39 1854.06977 1055.23256
## 40 1854.06977 1055.23256
## 41 1854.06977 1055.23256
## 42 1854.06977 1055.23256
## 43 1854.06977 1055.23256
## 44 1854.06977 1055.23256
## 45 1854.06977 1055.23256
## 46 1854.06977 1055.23256
## 47 1854.06977 1055.23256
## 48 1854.06977 1055.23256
## 49 1189.53488 1090.11628
## 50 1189.53488 1090.11628
## 51 1189.53488 1090.11628
## 52 1189.53488 1090.11628
## 53 1189.53488 1090.11628
## 54 1189.53488 1090.11628
## 55 1189.53488 1090.11628
## 56 1189.53488 1090.11628
## 57 1189.53488 1090.11628
## 58 1189.53488 1090.11628
## 59 1189.53488 1090.11628
## 60 1189.53488 1090.11628
## 61 1189.53488 1090.11628
## 62 1189.53488 1090.11628
## 63 1189.53488 1090.11628
## 64 1189.53488 1090.11628
## 65 1189.53488 1090.11628
## 66 1189.53488 1090.11628
## 67 1189.53488 1090.11628
## 68 1189.53488 1090.11628
## 69 1189.53488 1090.11628
## 70 1189.53488 1090.11628
## 71 1189.53488 1090.11628
## 72 1189.53488 1090.11628
## 73 3783.13953 2180.23256
## 74 3783.13953 2180.23256
## 75 3783.13953 2180.23256
## 76 3783.13953 2180.23256
## 77 3783.13953 2180.23256
## 78 3783.13953 2180.23256
## 79 3783.13953 2180.23256
## 80 3783.13953 2180.23256
## 81 3783.13953 2180.23256
## 82 3783.13953 2180.23256
## 83 3783.13953 2180.23256
## 84 3783.13953 2180.23256
## 85 3783.13953 2180.23256
## 86 3783.13953 2180.23256
## 87 3783.13953 2180.23256
## 88 3783.13953 2180.23256
## 89 3783.13953 2180.23256
## 90 3783.13953 2180.23256
## 91 3783.13953 2180.23256
## 92 3783.13953 2180.23256
## 93 3783.13953 2180.23256
## 94 3783.13953 2180.23256
## 95 3783.13953 2180.23256
## 96 3783.13953 2180.23256
## 97 1709.30233 549.41860
## 98 1709.30233 549.41860
## 99 1709.30233 549.41860
## 100 1709.30233 549.41860
## 101 1709.30233 549.41860
## 102 1709.30233 549.41860
## 103 1709.30233 549.41860
## 104 1709.30233 549.41860
## 105 1709.30233 549.41860
## 106 1709.30233 549.41860
## 107 1709.30233 549.41860
## 108 1709.30233 549.41860
## 109 1709.30233 549.41860
## 110 1709.30233 549.41860
## 111 1709.30233 549.41860
## 112 1709.30233 549.41860
## 113 1709.30233 549.41860
## 114 1709.30233 549.41860
## 115 1709.30233 549.41860
## 116 1709.30233 549.41860
## 117 1709.30233 549.41860
## 118 1709.30233 549.41860
## 119 1709.30233 549.41860
## 120 1709.30233 549.41860
## 121 540.69767 0.00000
## 122 540.69767 0.00000
## 123 540.69767 0.00000
## 124 540.69767 0.00000
## 125 540.69767 0.00000
## 126 540.69767 0.00000
## 127 540.69767 0.00000
## 128 540.69767 0.00000
## 129 540.69767 0.00000
## 130 540.69767 0.00000
## 131 540.69767 0.00000
## 132 540.69767 0.00000
## 133 540.69767 0.00000
## 134 540.69767 0.00000
## 135 540.69767 0.00000
## 136 540.69767 0.00000
## 137 540.69767 0.00000
## 138 540.69767 0.00000
## 139 540.69767 0.00000
## 140 540.69767 0.00000
## 141 540.69767 0.00000
## 142 540.69767 0.00000
## 143 540.69767 0.00000
## 144 540.69767 0.00000
## 145 1181.68605 31.39535
## 146 1181.68605 31.39535
## 147 1181.68605 31.39535
## 148 1181.68605 31.39535
## 149 1181.68605 31.39535
## 150 1181.68605 31.39535
## 151 1181.68605 31.39535
## 152 1181.68605 31.39535
## 153 1181.68605 31.39535
## 154 1181.68605 31.39535
## 155 1181.68605 31.39535
## 156 1181.68605 31.39535
## 157 1181.68605 31.39535
## 158 1181.68605 31.39535
## 159 1181.68605 31.39535
## 160 1181.68605 31.39535
## 161 1181.68605 31.39535
## 162 1181.68605 31.39535
## 163 1181.68605 31.39535
## 164 1181.68605 31.39535
## 165 1181.68605 31.39535
## 166 1181.68605 31.39535
## 167 1181.68605 31.39535
## 168 1181.68605 31.39535
## 169 1063.95349 126.45349
## 170 1063.95349 126.45349
## 171 1063.95349 126.45349
## 172 1063.95349 126.45349
## 173 1063.95349 126.45349
## 174 1063.95349 126.45349
## 175 1063.95349 126.45349
## 176 1063.95349 126.45349
## 177 1063.95349 126.45349
## 178 1063.95349 126.45349
## 179 1063.95349 126.45349
## 180 1063.95349 126.45349
## 181 1063.95349 126.45349
## 182 1063.95349 126.45349
## 183 1063.95349 126.45349
## 184 1063.95349 126.45349
## 185 1063.95349 126.45349
## 186 1063.95349 126.45349
## 187 1063.95349 126.45349
## 188 1063.95349 126.45349
## 189 1063.95349 126.45349
## 190 1063.95349 126.45349
## 191 1063.95349 126.45349
## 192 1063.95349 126.45349
## 193 883.43023 635.75581
## 194 883.43023 635.75581
## 195 883.43023 635.75581
## 196 883.43023 635.75581
## 197 883.43023 635.75581
## 198 883.43023 635.75581
## 199 883.43023 635.75581
## 200 883.43023 635.75581
## 201 883.43023 635.75581
## 202 883.43023 635.75581
## 203 883.43023 635.75581
## 204 883.43023 635.75581
## 205 883.43023 635.75581
## 206 883.43023 635.75581
## 207 883.43023 635.75581
## 208 883.43023 635.75581
## 209 883.43023 635.75581
## 210 883.43023 635.75581
## 211 883.43023 635.75581
## 212 883.43023 635.75581
## 213 883.43023 635.75581
## 214 883.43023 635.75581
## 215 883.43023 635.75581
## 216 883.43023 635.75581
## 217 5708.72093 1029.06977
## 218 5708.72093 1029.06977
## 219 5708.72093 1029.06977
## 220 5708.72093 1029.06977
## 221 5708.72093 1029.06977
## 222 5708.72093 1029.06977
## 223 5708.72093 1029.06977
## 224 5708.72093 1029.06977
## 225 5708.72093 1029.06977
## 226 5708.72093 1029.06977
## 227 5708.72093 1029.06977
## 228 5708.72093 1029.06977
## 229 5708.72093 1029.06977
## 230 5708.72093 1029.06977
## 231 5708.72093 1029.06977
## 232 5708.72093 1029.06977
## 233 5708.72093 1029.06977
## 234 5708.72093 1029.06977
## 235 5708.72093 1029.06977
## 236 5708.72093 1029.06977
## 237 5708.72093 1029.06977
## 238 5708.72093 1029.06977
## 239 5708.72093 1029.06977
## 240 5708.72093 1029.06977
## 241 99.41860 0.00000
## 242 99.41860 0.00000
## 243 99.41860 0.00000
## 244 99.41860 0.00000
## 245 99.41860 0.00000
## 246 99.41860 0.00000
## 247 99.41860 0.00000
## 248 99.41860 0.00000
## 249 99.41860 0.00000
## 250 99.41860 0.00000
## 251 99.41860 0.00000
## 252 99.41860 0.00000
## 253 99.41860 0.00000
## 254 99.41860 0.00000
## 255 99.41860 0.00000
## 256 99.41860 0.00000
## 257 99.41860 0.00000
## 258 99.41860 0.00000
## 259 99.41860 0.00000
## 260 99.41860 0.00000
## 261 99.41860 0.00000
## 262 99.41860 0.00000
## 263 99.41860 0.00000
## 264 99.41860 0.00000
## 265 146.51163 2188.95349
## 266 146.51163 2188.95349
## 267 146.51163 2188.95349
## 268 146.51163 2188.95349
## 269 146.51163 2188.95349
## 270 146.51163 2188.95349
## 271 146.51163 2188.95349
## 272 146.51163 2188.95349
## 273 146.51163 2188.95349
## 274 146.51163 2188.95349
## 275 146.51163 2188.95349
## 276 146.51163 2188.95349
## 277 146.51163 2188.95349
## 278 146.51163 2188.95349
## 279 146.51163 2188.95349
## 280 146.51163 2188.95349
## 281 146.51163 2188.95349
## 282 146.51163 2188.95349
## 283 146.51163 2188.95349
## 284 146.51163 2188.95349
## 285 146.51163 2188.95349
## 286 146.51163 2188.95349
## 287 146.51163 2188.95349
## 288 146.51163 2188.95349
## 289 0.00000 3654.06977
## 290 0.00000 3654.06977
## 291 0.00000 3654.06977
## 292 0.00000 3654.06977
## 293 0.00000 3654.06977
## 294 0.00000 3654.06977
## 295 0.00000 3654.06977
## 296 0.00000 3654.06977
## 297 0.00000 3654.06977
## 298 0.00000 3654.06977
## 299 0.00000 3654.06977
## 300 0.00000 3654.06977
## 301 0.00000 3654.06977
## 302 0.00000 3654.06977
## 303 0.00000 3654.06977
## 304 0.00000 3654.06977
## 305 0.00000 3654.06977
## 306 0.00000 3654.06977
## 307 0.00000 3654.06977
## 308 0.00000 3654.06977
## 309 0.00000 3654.06977
## 310 0.00000 3654.06977
## 311 0.00000 3654.06977
## 312 0.00000 3654.06977
## 313 976.74419 287.79070
## 314 976.74419 287.79070
## 315 976.74419 287.79070
## 316 976.74419 287.79070
## 317 976.74419 287.79070
## 318 976.74419 287.79070
## 319 976.74419 287.79070
## 320 976.74419 287.79070
## 321 976.74419 287.79070
## 322 976.74419 287.79070
## 323 976.74419 287.79070
## 324 976.74419 287.79070
## 325 976.74419 287.79070
## 326 976.74419 287.79070
## 327 976.74419 287.79070
## 328 976.74419 287.79070
## 329 976.74419 287.79070
## 330 976.74419 287.79070
## 331 976.74419 287.79070
## 332 976.74419 287.79070
## 333 976.74419 287.79070
## 334 976.74419 287.79070
## 335 976.74419 287.79070
## 336 976.74419 287.79070
## 337 1360.46512 31.39535
## 338 1360.46512 31.39535
## 339 1360.46512 31.39535
## 340 1360.46512 31.39535
## 341 1360.46512 31.39535
## 342 1360.46512 31.39535
## 343 1360.46512 31.39535
## 344 1360.46512 31.39535
## 345 1360.46512 31.39535
## 346 1360.46512 31.39535
## 347 1360.46512 31.39535
## 348 1360.46512 31.39535
## 349 1360.46512 31.39535
## 350 1360.46512 31.39535
## 351 1360.46512 31.39535
## 352 1360.46512 31.39535
## 353 1360.46512 31.39535
## 354 1360.46512 31.39535
## 355 1360.46512 31.39535
## 356 1360.46512 31.39535
## 357 1360.46512 31.39535
## 358 1360.46512 31.39535
## 359 1360.46512 31.39535
## 360 1360.46512 31.39535
## 361 1068.31395 0.00000
## 362 1068.31395 0.00000
## 363 1068.31395 0.00000
## 364 1068.31395 0.00000
## 365 1068.31395 0.00000
## 366 1068.31395 0.00000
## 367 1068.31395 0.00000
## 368 1068.31395 0.00000
## 369 1068.31395 0.00000
## 370 1068.31395 0.00000
## 371 1068.31395 0.00000
## 372 1068.31395 0.00000
## 373 1068.31395 0.00000
## 374 1068.31395 0.00000
## 375 1068.31395 0.00000
## 376 1068.31395 0.00000
## 377 1068.31395 0.00000
## 378 1068.31395 0.00000
## 379 1068.31395 0.00000
## 380 1068.31395 0.00000
## 381 1068.31395 0.00000
## 382 1068.31395 0.00000
## 383 1068.31395 0.00000
## 384 1068.31395 0.00000
## 385 883.43023 635.75581
## 386 883.43023 635.75581
## 387 883.43023 635.75581
## 388 883.43023 635.75581
## 389 883.43023 635.75581
## 390 883.43023 635.75581
## 391 883.43023 635.75581
## 392 883.43023 635.75581
## 393 883.43023 635.75581
## 394 883.43023 635.75581
## 395 883.43023 635.75581
## 396 883.43023 635.75581
## 397 883.43023 635.75581
## 398 883.43023 635.75581
## 399 883.43023 635.75581
## 400 883.43023 635.75581
## 401 883.43023 635.75581
## 402 883.43023 635.75581
## 403 883.43023 635.75581
## 404 883.43023 635.75581
## 405 883.43023 635.75581
## 406 883.43023 635.75581
## 407 883.43023 635.75581
## 408 883.43023 635.75581
## 409 144.76744 2162.79070
## 410 144.76744 2162.79070
## 411 144.76744 2162.79070
## 412 144.76744 2162.79070
## 413 144.76744 2162.79070
## 414 144.76744 2162.79070
## 415 144.76744 2162.79070
## 416 144.76744 2162.79070
## 417 144.76744 2162.79070
## 418 144.76744 2162.79070
## 419 144.76744 2162.79070
## 420 144.76744 2162.79070
## 421 144.76744 2162.79070
## 422 144.76744 2162.79070
## 423 144.76744 2162.79070
## 424 144.76744 2162.79070
## 425 144.76744 2162.79070
## 426 144.76744 2162.79070
## 427 144.76744 2162.79070
## 428 144.76744 2162.79070
## 429 144.76744 2162.79070
## 430 144.76744 2162.79070
## 431 144.76744 2162.79070
## 432 144.76744 2162.79070
## 433 1128.48837 1090.11628
## 434 1128.48837 1090.11628
## 435 1128.48837 1090.11628
## 436 1128.48837 1090.11628
## 437 1128.48837 1090.11628
## 438 1128.48837 1090.11628
## 439 1128.48837 1090.11628
## 440 1128.48837 1090.11628
## 441 1128.48837 1090.11628
## 442 1128.48837 1090.11628
## 443 1128.48837 1090.11628
## 444 1128.48837 1090.11628
## 445 1128.48837 1090.11628
## 446 1128.48837 1090.11628
## 447 1128.48837 1090.11628
## 448 1128.48837 1090.11628
## 449 1128.48837 1090.11628
## 450 1128.48837 1090.11628
## 451 1128.48837 1090.11628
## 452 1128.48837 1090.11628
## 453 1128.48837 1090.11628
## 454 1128.48837 1090.11628
## 455 1128.48837 1090.11628
## 456 1128.48837 1090.11628
## 457 2727.90698 0.00000
## 458 2727.90698 0.00000
## 459 2727.90698 0.00000
## 460 2727.90698 0.00000
## 461 2727.90698 0.00000
## 462 2727.90698 0.00000
## 463 2727.90698 0.00000
## 464 2727.90698 0.00000
## 465 2727.90698 0.00000
## 466 2727.90698 0.00000
## 467 2727.90698 0.00000
## 468 2727.90698 0.00000
## 469 2727.90698 0.00000
## 470 2727.90698 0.00000
## 471 2727.90698 0.00000
## 472 2727.90698 0.00000
## 473 2727.90698 0.00000
## 474 2727.90698 0.00000
## 475 2727.90698 0.00000
## 476 2727.90698 0.00000
## 477 2727.90698 0.00000
## 478 2727.90698 0.00000
## 479 2727.90698 0.00000
## 480 2727.90698 0.00000
## 481 1648.25581 2215.11628
## 482 1648.25581 2215.11628
## 483 1648.25581 2215.11628
## 484 1648.25581 2215.11628
## 485 1648.25581 2215.11628
## 486 1648.25581 2215.11628
## 487 1648.25581 2215.11628
## 488 1648.25581 2215.11628
## 489 1648.25581 2215.11628
## 490 1648.25581 2215.11628
## 491 1648.25581 2215.11628
## 492 1648.25581 2215.11628
## 493 1648.25581 2215.11628
## 494 1648.25581 2215.11628
## 495 1648.25581 2215.11628
## 496 1648.25581 2215.11628
## 497 1648.25581 2215.11628
## 498 1648.25581 2215.11628
## 499 1648.25581 2215.11628
## 500 1648.25581 2215.11628
## 501 1648.25581 2215.11628
## 502 1648.25581 2215.11628
## 503 1648.25581 2215.11628
## 504 1648.25581 2215.11628
## 505 366.27907 0.00000
## 506 366.27907 0.00000
## 507 366.27907 0.00000
## 508 366.27907 0.00000
## 509 366.27907 0.00000
## 510 366.27907 0.00000
## 511 366.27907 0.00000
## 512 366.27907 0.00000
## 513 366.27907 0.00000
## 514 366.27907 0.00000
## 515 366.27907 0.00000
## 516 366.27907 0.00000
## 517 366.27907 0.00000
## 518 366.27907 0.00000
## 519 366.27907 0.00000
## 520 366.27907 0.00000
## 521 366.27907 0.00000
## 522 366.27907 0.00000
## 523 366.27907 0.00000
## 524 366.27907 0.00000
## 525 366.27907 0.00000
## 526 366.27907 0.00000
## 527 366.27907 0.00000
## 528 366.27907 0.00000
## 529 514.53488 31.39535
## 530 514.53488 31.39535
## 531 514.53488 31.39535
## 532 514.53488 31.39535
## 533 514.53488 31.39535
## 534 514.53488 31.39535
## 535 514.53488 31.39535
## 536 514.53488 31.39535
## 537 514.53488 31.39535
## 538 514.53488 31.39535
## 539 514.53488 31.39535
## 540 514.53488 31.39535
## 541 514.53488 31.39535
## 542 514.53488 31.39535
## 543 514.53488 31.39535
## 544 514.53488 31.39535
## 545 514.53488 31.39535
## 546 514.53488 31.39535
## 547 514.53488 31.39535
## 548 514.53488 31.39535
## 549 514.53488 31.39535
## 550 514.53488 31.39535
## 551 514.53488 31.39535
## 552 514.53488 31.39535
## 553 0.00000 0.00000
## 554 0.00000 0.00000
## 555 0.00000 0.00000
## 556 0.00000 0.00000
## 557 0.00000 0.00000
## 558 0.00000 0.00000
## 559 0.00000 0.00000
## 560 0.00000 0.00000
## 561 0.00000 0.00000
## 562 0.00000 0.00000
## 563 0.00000 0.00000
## 564 0.00000 0.00000
## 565 0.00000 0.00000
## 566 0.00000 0.00000
## 567 0.00000 0.00000
## 568 0.00000 0.00000
## 569 0.00000 0.00000
## 570 0.00000 0.00000
## 571 0.00000 0.00000
## 572 0.00000 0.00000
## 573 0.00000 0.00000
## 574 0.00000 0.00000
## 575 0.00000 0.00000
## 576 0.00000 0.00000
## 577 883.43023 635.75581
## 578 883.43023 635.75581
## 579 883.43023 635.75581
## 580 883.43023 635.75581
## 581 883.43023 635.75581
## 582 883.43023 635.75581
## 583 883.43023 635.75581
## 584 883.43023 635.75581
## 585 883.43023 635.75581
## 586 883.43023 635.75581
## 587 883.43023 635.75581
## 588 883.43023 635.75581
## 589 883.43023 635.75581
## 590 883.43023 635.75581
## 591 883.43023 635.75581
## 592 883.43023 635.75581
## 593 883.43023 635.75581
## 594 883.43023 635.75581
## 595 883.43023 635.75581
## 596 883.43023 635.75581
## 597 883.43023 635.75581
## 598 883.43023 635.75581
## 599 883.43023 635.75581
## 600 883.43023 635.75581
## 601 702.90698 0.00000
## 602 702.90698 0.00000
## 603 702.90698 0.00000
## 604 702.90698 0.00000
## 605 702.90698 0.00000
## 606 702.90698 0.00000
## 607 702.90698 0.00000
## 608 702.90698 0.00000
## 609 702.90698 0.00000
## 610 702.90698 0.00000
## 611 702.90698 0.00000
## 612 702.90698 0.00000
## 613 702.90698 0.00000
## 614 702.90698 0.00000
## 615 702.90698 0.00000
## 616 702.90698 0.00000
## 617 702.90698 0.00000
## 618 702.90698 0.00000
## 619 702.90698 0.00000
## 620 702.90698 0.00000
## 621 702.90698 0.00000
## 622 702.90698 0.00000
## 623 702.90698 0.00000
## 624 702.90698 0.00000
## 625 1206.97674 235.46512
## 626 1206.97674 235.46512
## 627 1206.97674 235.46512
## 628 1206.97674 235.46512
## 629 1206.97674 235.46512
## 630 1206.97674 235.46512
## 631 1206.97674 235.46512
## 632 1206.97674 235.46512
## 633 1206.97674 235.46512
## 634 1206.97674 235.46512
## 635 1206.97674 235.46512
## 636 1206.97674 235.46512
## 637 1206.97674 235.46512
## 638 1206.97674 235.46512
## 639 1206.97674 235.46512
## 640 1206.97674 235.46512
## 641 1206.97674 235.46512
## 642 1206.97674 235.46512
## 643 1206.97674 235.46512
## 644 1206.97674 235.46512
## 645 1206.97674 235.46512
## 646 1206.97674 235.46512
## 647 1206.97674 235.46512
## 648 1206.97674 235.46512
## 649 1376.16279 0.00000
## 650 1376.16279 0.00000
## 651 1376.16279 0.00000
## 652 1376.16279 0.00000
## 653 1376.16279 0.00000
## 654 1376.16279 0.00000
## 655 1376.16279 0.00000
## 656 1376.16279 0.00000
## 657 1376.16279 0.00000
## 658 1376.16279 0.00000
## 659 1376.16279 0.00000
## 660 1376.16279 0.00000
## 661 1376.16279 0.00000
## 662 1376.16279 0.00000
## 663 1376.16279 0.00000
## 664 1376.16279 0.00000
## 665 1376.16279 0.00000
## 666 1376.16279 0.00000
## 667 1376.16279 0.00000
## 668 1376.16279 0.00000
## 669 1376.16279 0.00000
## 670 1376.16279 0.00000
## 671 1376.16279 0.00000
## 672 1376.16279 0.00000
## 673 1055.23256 1081.39535
## 674 1055.23256 1081.39535
## 675 1055.23256 1081.39535
## 676 1055.23256 1081.39535
## 677 1055.23256 1081.39535
## 678 1055.23256 1081.39535
## 679 1055.23256 1081.39535
## 680 1055.23256 1081.39535
## 681 1055.23256 1081.39535
## 682 1055.23256 1081.39535
## 683 1055.23256 1081.39535
## 684 1055.23256 1081.39535
## 685 1055.23256 1081.39535
## 686 1055.23256 1081.39535
## 687 1055.23256 1081.39535
## 688 1055.23256 1081.39535
## 689 1055.23256 1081.39535
## 690 1055.23256 1081.39535
## 691 1055.23256 1081.39535
## 692 1055.23256 1081.39535
## 693 1055.23256 1081.39535
## 694 1055.23256 1081.39535
## 695 1055.23256 1081.39535
## 696 1055.23256 1081.39535
## 697 1561.04651 0.00000
## 698 1561.04651 0.00000
## 699 1561.04651 0.00000
## 700 1561.04651 0.00000
## 701 1561.04651 0.00000
## 702 1561.04651 0.00000
## 703 1561.04651 0.00000
## 704 1561.04651 0.00000
## 705 1561.04651 0.00000
## 706 1561.04651 0.00000
## 707 1561.04651 0.00000
## 708 1561.04651 0.00000
## 709 1561.04651 0.00000
## 710 1561.04651 0.00000
## 711 1561.04651 0.00000
## 712 1561.04651 0.00000
## 713 1561.04651 0.00000
## 714 1561.04651 0.00000
## 715 1561.04651 0.00000
## 716 1561.04651 0.00000
## 717 1561.04651 0.00000
## 718 1561.04651 0.00000
## 719 1561.04651 0.00000
## 720 1561.04651 0.00000
## 721 1609.01163 31.39535
## 722 1609.01163 31.39535
## 723 1609.01163 31.39535
## 724 1609.01163 31.39535
## 725 1609.01163 31.39535
## 726 1609.01163 31.39535
## 727 1609.01163 31.39535
## 728 1609.01163 31.39535
## 729 1609.01163 31.39535
## 730 1609.01163 31.39535
## 731 1609.01163 31.39535
## 732 1609.01163 31.39535
## 733 1609.01163 31.39535
## 734 1609.01163 31.39535
## 735 1609.01163 31.39535
## 736 1609.01163 31.39535
## 737 1609.01163 31.39535
## 738 1609.01163 31.39535
## 739 1609.01163 31.39535
## 740 1609.01163 31.39535
## 741 1609.01163 31.39535
## 742 1609.01163 31.39535
## 743 1609.01163 31.39535
## 744 1609.01163 31.39535
## 745 0.00000 0.00000
## 746 0.00000 0.00000
## 747 0.00000 0.00000
## 748 0.00000 0.00000
## 749 0.00000 0.00000
## 750 0.00000 0.00000
## 751 0.00000 0.00000
## 752 0.00000 0.00000
## 753 0.00000 0.00000
## 754 0.00000 0.00000
## 755 0.00000 0.00000
## 756 0.00000 0.00000
## 757 0.00000 0.00000
## 758 0.00000 0.00000
## 759 0.00000 0.00000
## 760 0.00000 0.00000
## 761 0.00000 0.00000
## 762 0.00000 0.00000
## 763 0.00000 0.00000
## 764 0.00000 0.00000
## 765 0.00000 0.00000
## 766 0.00000 0.00000
## 767 0.00000 0.00000
## 768 0.00000 0.00000
## 769 883.43023 635.75581
## 770 883.43023 635.75581
## 771 883.43023 635.75581
## 772 883.43023 635.75581
## 773 883.43023 635.75581
## 774 883.43023 635.75581
## 775 883.43023 635.75581
## 776 883.43023 635.75581
## 777 883.43023 635.75581
## 778 883.43023 635.75581
## 779 883.43023 635.75581
## 780 883.43023 635.75581
## 781 883.43023 635.75581
## 782 883.43023 635.75581
## 783 883.43023 635.75581
## 784 883.43023 635.75581
## 785 883.43023 635.75581
## 786 883.43023 635.75581
## 787 883.43023 635.75581
## 788 883.43023 635.75581
## 789 883.43023 635.75581
## 790 883.43023 635.75581
## 791 883.43023 635.75581
## 792 883.43023 635.75581
## 793 2944.18605 0.00000
## 794 2944.18605 0.00000
## 795 2944.18605 0.00000
## 796 2944.18605 0.00000
## 797 2944.18605 0.00000
## 798 2944.18605 0.00000
## 799 2944.18605 0.00000
## 800 2944.18605 0.00000
## 801 2944.18605 0.00000
## 802 2944.18605 0.00000
## 803 2944.18605 0.00000
## 804 2944.18605 0.00000
## 805 2944.18605 0.00000
## 806 2944.18605 0.00000
## 807 2944.18605 0.00000
## 808 2944.18605 0.00000
## 809 2944.18605 0.00000
## 810 2944.18605 0.00000
## 811 2944.18605 0.00000
## 812 2944.18605 0.00000
## 813 2944.18605 0.00000
## 814 2944.18605 0.00000
## 815 2944.18605 0.00000
## 816 2944.18605 0.00000
## 817 99.41860 1055.23256
## 818 99.41860 1055.23256
## 819 99.41860 1055.23256
## 820 99.41860 1055.23256
## 821 99.41860 1055.23256
## 822 99.41860 1055.23256
## 823 99.41860 1055.23256
## 824 99.41860 1055.23256
## 825 99.41860 1055.23256
## 826 99.41860 1055.23256
## 827 99.41860 1055.23256
## 828 99.41860 1055.23256
## 829 99.41860 1055.23256
## 830 99.41860 1055.23256
## 831 99.41860 1055.23256
## 832 99.41860 1055.23256
## 833 99.41860 1055.23256
## 834 99.41860 1055.23256
## 835 99.41860 1055.23256
## 836 99.41860 1055.23256
## 837 99.41860 1055.23256
## 838 99.41860 1055.23256
## 839 99.41860 1055.23256
## 840 99.41860 1055.23256
## 841 3059.30233 3427.32558
## 842 3059.30233 3427.32558
## 843 3059.30233 3427.32558
## 844 3059.30233 3427.32558
## 845 3059.30233 3427.32558
## 846 3059.30233 3427.32558
## 847 3059.30233 3427.32558
## 848 3059.30233 3427.32558
## 849 3059.30233 3427.32558
## 850 3059.30233 3427.32558
## 851 3059.30233 3427.32558
## 852 3059.30233 3427.32558
## 853 3059.30233 3427.32558
## 854 3059.30233 3427.32558
## 855 3059.30233 3427.32558
## 856 3059.30233 3427.32558
## 857 3059.30233 3427.32558
## 858 3059.30233 3427.32558
## 859 3059.30233 3427.32558
## 860 3059.30233 3427.32558
## 861 3059.30233 3427.32558
## 862 3059.30233 3427.32558
## 863 3059.30233 3427.32558
## 864 3059.30233 3427.32558
## 865 409.88372 3706.39535
## 866 409.88372 3706.39535
## 867 409.88372 3706.39535
## 868 409.88372 3706.39535
## 869 409.88372 3706.39535
## 870 409.88372 3706.39535
## 871 409.88372 3706.39535
## 872 409.88372 3706.39535
## 873 409.88372 3706.39535
## 874 409.88372 3706.39535
## 875 409.88372 3706.39535
## 876 409.88372 3706.39535
## 877 409.88372 3706.39535
## 878 409.88372 3706.39535
## 879 409.88372 3706.39535
## 880 409.88372 3706.39535
## 881 409.88372 3706.39535
## 882 409.88372 3706.39535
## 883 409.88372 3706.39535
## 884 409.88372 3706.39535
## 885 409.88372 3706.39535
## 886 409.88372 3706.39535
## 887 409.88372 3706.39535
## 888 409.88372 3706.39535
## 889 2406.97674 1090.11628
## 890 2406.97674 1090.11628
## 891 2406.97674 1090.11628
## 892 2406.97674 1090.11628
## 893 2406.97674 1090.11628
## 894 2406.97674 1090.11628
## 895 2406.97674 1090.11628
## 896 2406.97674 1090.11628
## 897 2406.97674 1090.11628
## 898 2406.97674 1090.11628
## 899 2406.97674 1090.11628
## 900 2406.97674 1090.11628
## 901 2406.97674 1090.11628
## 902 2406.97674 1090.11628
## 903 2406.97674 1090.11628
## 904 2406.97674 1090.11628
## 905 2406.97674 1090.11628
## 906 2406.97674 1090.11628
## 907 2406.97674 1090.11628
## 908 2406.97674 1090.11628
## 909 2406.97674 1090.11628
## 910 2406.97674 1090.11628
## 911 2406.97674 1090.11628
## 912 2406.97674 1090.11628
## 913 2132.26744 1121.51163
## 914 2132.26744 1121.51163
## 915 2132.26744 1121.51163
## 916 2132.26744 1121.51163
## 917 2132.26744 1121.51163
## 918 2132.26744 1121.51163
## 919 2132.26744 1121.51163
## 920 2132.26744 1121.51163
## 921 2132.26744 1121.51163
## 922 2132.26744 1121.51163
## 923 2132.26744 1121.51163
## 924 2132.26744 1121.51163
## 925 2132.26744 1121.51163
## 926 2132.26744 1121.51163
## 927 2132.26744 1121.51163
## 928 2132.26744 1121.51163
## 929 2132.26744 1121.51163
## 930 2132.26744 1121.51163
## 931 2132.26744 1121.51163
## 932 2132.26744 1121.51163
## 933 2132.26744 1121.51163
## 934 2132.26744 1121.51163
## 935 2132.26744 1121.51163
## 936 2132.26744 1121.51163
## 937 1848.83721 0.00000
## 938 1848.83721 0.00000
## 939 1848.83721 0.00000
## 940 1848.83721 0.00000
## 941 1848.83721 0.00000
## 942 1848.83721 0.00000
## 943 1848.83721 0.00000
## 944 1848.83721 0.00000
## 945 1848.83721 0.00000
## 946 1848.83721 0.00000
## 947 1848.83721 0.00000
## 948 1848.83721 0.00000
## 949 1848.83721 0.00000
## 950 1848.83721 0.00000
## 951 1848.83721 0.00000
## 952 1848.83721 0.00000
## 953 1848.83721 0.00000
## 954 1848.83721 0.00000
## 955 1848.83721 0.00000
## 956 1848.83721 0.00000
## 957 1848.83721 0.00000
## 958 1848.83721 0.00000
## 959 1848.83721 0.00000
## 960 1848.83721 0.00000
## 961 883.43023 635.75581
## 962 883.43023 635.75581
## 963 883.43023 635.75581
## 964 883.43023 635.75581
## 965 883.43023 635.75581
## 966 883.43023 635.75581
## 967 883.43023 635.75581
## 968 883.43023 635.75581
## 969 883.43023 635.75581
## 970 883.43023 635.75581
## 971 883.43023 635.75581
## 972 883.43023 635.75581
## 973 883.43023 635.75581
## 974 883.43023 635.75581
## 975 883.43023 635.75581
## 976 883.43023 635.75581
## 977 883.43023 635.75581
## 978 883.43023 635.75581
## 979 883.43023 635.75581
## 980 883.43023 635.75581
## 981 883.43023 635.75581
## 982 883.43023 635.75581
## 983 883.43023 635.75581
## 984 883.43023 635.75581
## 985 2131.39535 1055.23256
## 986 2131.39535 1055.23256
## 987 2131.39535 1055.23256
## 988 2131.39535 1055.23256
## 989 2131.39535 1055.23256
## 990 2131.39535 1055.23256
## 991 2131.39535 1055.23256
## 992 2131.39535 1055.23256
## 993 2131.39535 1055.23256
## 994 2131.39535 1055.23256
## 995 2131.39535 1055.23256
## 996 2131.39535 1055.23256
## 997 2131.39535 1055.23256
## 998 2131.39535 1055.23256
## 999 2131.39535 1055.23256
## 1000 2131.39535 1055.23256
## 1001 2131.39535 1055.23256
## 1002 2131.39535 1055.23256
## 1003 2131.39535 1055.23256
## 1004 2131.39535 1055.23256
## 1005 2131.39535 1055.23256
## 1006 2131.39535 1055.23256
## 1007 2131.39535 1055.23256
## 1008 2131.39535 1055.23256
## 1009 1412.79070 1090.11628
## 1010 1412.79070 1090.11628
## 1011 1412.79070 1090.11628
## 1012 1412.79070 1090.11628
## 1013 1412.79070 1090.11628
## 1014 1412.79070 1090.11628
## 1015 1412.79070 1090.11628
## 1016 1412.79070 1090.11628
## 1017 1412.79070 1090.11628
## 1018 1412.79070 1090.11628
## 1019 1412.79070 1090.11628
## 1020 1412.79070 1090.11628
## 1021 1412.79070 1090.11628
## 1022 1412.79070 1090.11628
## 1023 1412.79070 1090.11628
## 1024 1412.79070 1090.11628
## 1025 1412.79070 1090.11628
## 1026 1412.79070 1090.11628
## 1027 1412.79070 1090.11628
## 1028 1412.79070 1090.11628
## 1029 1412.79070 1090.11628
## 1030 1412.79070 1090.11628
## 1031 1412.79070 1090.11628
## 1032 1412.79070 1090.11628
## 1033 3729.06977 2180.23256
## 1034 3729.06977 2180.23256
## 1035 3729.06977 2180.23256
## 1036 3729.06977 2180.23256
## 1037 3729.06977 2180.23256
## 1038 3729.06977 2180.23256
## 1039 3729.06977 2180.23256
## 1040 3729.06977 2180.23256
## 1041 3729.06977 2180.23256
## 1042 3729.06977 2180.23256
## 1043 3729.06977 2180.23256
## 1044 3729.06977 2180.23256
## 1045 3729.06977 2180.23256
## 1046 3729.06977 2180.23256
## 1047 3729.06977 2180.23256
## 1048 3729.06977 2180.23256
## 1049 3729.06977 2180.23256
## 1050 3729.06977 2180.23256
## 1051 3729.06977 2180.23256
## 1052 3729.06977 2180.23256
## 1053 3729.06977 2180.23256
## 1054 3729.06977 2180.23256
## 1055 3729.06977 2180.23256
## 1056 3729.06977 2180.23256
## 1057 1709.30233 549.41860
## 1058 1709.30233 549.41860
## 1059 1709.30233 549.41860
## 1060 1709.30233 549.41860
## 1061 1709.30233 549.41860
## 1062 1709.30233 549.41860
## 1063 1709.30233 549.41860
## 1064 1709.30233 549.41860
## 1065 1709.30233 549.41860
## 1066 1709.30233 549.41860
## 1067 1709.30233 549.41860
## 1068 1709.30233 549.41860
## 1069 1709.30233 549.41860
## 1070 1709.30233 549.41860
## 1071 1709.30233 549.41860
## 1072 1709.30233 549.41860
## 1073 1709.30233 549.41860
## 1074 1709.30233 549.41860
## 1075 1709.30233 549.41860
## 1076 1709.30233 549.41860
## 1077 1709.30233 549.41860
## 1078 1709.30233 549.41860
## 1079 1709.30233 549.41860
## 1080 1709.30233 549.41860
## 1081 540.69767 0.00000
## 1082 540.69767 0.00000
## 1083 540.69767 0.00000
## 1084 540.69767 0.00000
## 1085 540.69767 0.00000
## 1086 540.69767 0.00000
## 1087 540.69767 0.00000
## 1088 540.69767 0.00000
## 1089 540.69767 0.00000
## 1090 540.69767 0.00000
## 1091 540.69767 0.00000
## 1092 540.69767 0.00000
## 1093 540.69767 0.00000
## 1094 540.69767 0.00000
## 1095 540.69767 0.00000
## 1096 540.69767 0.00000
## 1097 540.69767 0.00000
## 1098 540.69767 0.00000
## 1099 540.69767 0.00000
## 1100 540.69767 0.00000
## 1101 540.69767 0.00000
## 1102 540.69767 0.00000
## 1103 540.69767 0.00000
## 1104 540.69767 0.00000
## 1105 1181.68605 0.00000
## 1106 1181.68605 0.00000
## 1107 1181.68605 0.00000
## 1108 1181.68605 0.00000
## 1109 1181.68605 0.00000
## 1110 1181.68605 0.00000
## 1111 1181.68605 0.00000
## 1112 1181.68605 0.00000
## 1113 1181.68605 0.00000
## 1114 1181.68605 0.00000
## 1115 1181.68605 0.00000
## 1116 1181.68605 0.00000
## 1117 1181.68605 0.00000
## 1118 1181.68605 0.00000
## 1119 1181.68605 0.00000
## 1120 1181.68605 0.00000
## 1121 1181.68605 0.00000
## 1122 1181.68605 0.00000
## 1123 1181.68605 0.00000
## 1124 1181.68605 0.00000
## 1125 1181.68605 0.00000
## 1126 1181.68605 0.00000
## 1127 1181.68605 0.00000
## 1128 1181.68605 0.00000
## 1129 1063.95349 126.45349
## 1130 1063.95349 126.45349
## 1131 1063.95349 126.45349
## 1132 1063.95349 126.45349
## 1133 1063.95349 126.45349
## 1134 1063.95349 126.45349
## 1135 1063.95349 126.45349
## 1136 1063.95349 126.45349
## 1137 1063.95349 126.45349
## 1138 1063.95349 126.45349
## 1139 1063.95349 126.45349
## 1140 1063.95349 126.45349
## 1141 1063.95349 126.45349
## 1142 1063.95349 126.45349
## 1143 1063.95349 126.45349
## 1144 1063.95349 126.45349
## 1145 1063.95349 126.45349
## 1146 1063.95349 126.45349
## 1147 1063.95349 126.45349
## 1148 1063.95349 126.45349
## 1149 1063.95349 126.45349
## 1150 1063.95349 126.45349
## 1151 1063.95349 126.45349
## 1152 1063.95349 126.45349
## 1153 883.43023 635.75581
## 1154 883.43023 635.75581
## 1155 883.43023 635.75581
## 1156 883.43023 635.75581
## 1157 883.43023 635.75581
## 1158 883.43023 635.75581
## 1159 883.43023 635.75581
## 1160 883.43023 635.75581
## 1161 883.43023 635.75581
## 1162 883.43023 635.75581
## 1163 883.43023 635.75581
## 1164 883.43023 635.75581
## 1165 883.43023 635.75581
## 1166 883.43023 635.75581
## 1167 883.43023 635.75581
## 1168 883.43023 635.75581
## 1169 883.43023 635.75581
## 1170 883.43023 635.75581
## 1171 883.43023 635.75581
## 1172 883.43023 635.75581
## 1173 883.43023 635.75581
## 1174 883.43023 635.75581
## 1175 883.43023 635.75581
## 1176 883.43023 635.75581
## 1177 5986.04651 1029.06977
## 1178 5986.04651 1029.06977
## 1179 5986.04651 1029.06977
## 1180 5986.04651 1029.06977
## 1181 5986.04651 1029.06977
## 1182 5986.04651 1029.06977
## 1183 5986.04651 1029.06977
## 1184 5986.04651 1029.06977
## 1185 5986.04651 1029.06977
## 1186 5986.04651 1029.06977
## 1187 5986.04651 1029.06977
## 1188 5986.04651 1029.06977
## 1189 5986.04651 1029.06977
## 1190 5986.04651 1029.06977
## 1191 5986.04651 1029.06977
## 1192 5986.04651 1029.06977
## 1193 5986.04651 1029.06977
## 1194 5986.04651 1029.06977
## 1195 5986.04651 1029.06977
## 1196 5986.04651 1029.06977
## 1197 5986.04651 1029.06977
## 1198 5986.04651 1029.06977
## 1199 5986.04651 1029.06977
## 1200 5986.04651 1029.06977
## 1201 322.67442 0.00000
## 1202 322.67442 0.00000
## 1203 322.67442 0.00000
## 1204 322.67442 0.00000
## 1205 322.67442 0.00000
## 1206 322.67442 0.00000
## 1207 322.67442 0.00000
## 1208 322.67442 0.00000
## 1209 322.67442 0.00000
## 1210 322.67442 0.00000
## 1211 322.67442 0.00000
## 1212 322.67442 0.00000
## 1213 322.67442 0.00000
## 1214 322.67442 0.00000
## 1215 322.67442 0.00000
## 1216 322.67442 0.00000
## 1217 322.67442 0.00000
## 1218 322.67442 0.00000
## 1219 322.67442 0.00000
## 1220 322.67442 0.00000
## 1221 322.67442 0.00000
## 1222 322.67442 0.00000
## 1223 322.67442 0.00000
## 1224 322.67442 0.00000
## 1225 92.44186 2188.95349
## 1226 92.44186 2188.95349
## 1227 92.44186 2188.95349
## 1228 92.44186 2188.95349
## 1229 92.44186 2188.95349
## 1230 92.44186 2188.95349
## 1231 92.44186 2188.95349
## 1232 92.44186 2188.95349
## 1233 92.44186 2188.95349
## 1234 92.44186 2188.95349
## 1235 92.44186 2188.95349
## 1236 92.44186 2188.95349
## 1237 92.44186 2188.95349
## 1238 92.44186 2188.95349
## 1239 92.44186 2188.95349
## 1240 92.44186 2188.95349
## 1241 92.44186 2188.95349
## 1242 92.44186 2188.95349
## 1243 92.44186 2188.95349
## 1244 92.44186 2188.95349
## 1245 92.44186 2188.95349
## 1246 92.44186 2188.95349
## 1247 92.44186 2188.95349
## 1248 92.44186 2188.95349
## 1249 0.00000 3654.06977
## 1250 0.00000 3654.06977
## 1251 0.00000 3654.06977
## 1252 0.00000 3654.06977
## 1253 0.00000 3654.06977
## 1254 0.00000 3654.06977
## 1255 0.00000 3654.06977
## 1256 0.00000 3654.06977
## 1257 0.00000 3654.06977
## 1258 0.00000 3654.06977
## 1259 0.00000 3654.06977
## 1260 0.00000 3654.06977
## 1261 0.00000 3654.06977
## 1262 0.00000 3654.06977
## 1263 0.00000 3654.06977
## 1264 0.00000 3654.06977
## 1265 0.00000 3654.06977
## 1266 0.00000 3654.06977
## 1267 0.00000 3654.06977
## 1268 0.00000 3654.06977
## 1269 0.00000 3654.06977
## 1270 0.00000 3654.06977
## 1271 0.00000 3654.06977
## 1272 0.00000 3654.06977
## 1273 976.74419 287.79070
## 1274 976.74419 287.79070
## 1275 976.74419 287.79070
## 1276 976.74419 287.79070
## 1277 976.74419 287.79070
## 1278 976.74419 287.79070
## 1279 976.74419 287.79070
## 1280 976.74419 287.79070
## 1281 976.74419 287.79070
## 1282 976.74419 287.79070
## 1283 976.74419 287.79070
## 1284 976.74419 287.79070
## 1285 976.74419 287.79070
## 1286 976.74419 287.79070
## 1287 976.74419 287.79070
## 1288 976.74419 287.79070
## 1289 976.74419 287.79070
## 1290 976.74419 287.79070
## 1291 976.74419 287.79070
## 1292 976.74419 287.79070
## 1293 976.74419 287.79070
## 1294 976.74419 287.79070
## 1295 976.74419 287.79070
## 1296 976.74419 287.79070
## 1297 1360.46512 0.00000
## 1298 1360.46512 0.00000
## 1299 1360.46512 0.00000
## 1300 1360.46512 0.00000
## 1301 1360.46512 0.00000
## 1302 1360.46512 0.00000
## 1303 1360.46512 0.00000
## 1304 1360.46512 0.00000
## 1305 1360.46512 0.00000
## 1306 1360.46512 0.00000
## 1307 1360.46512 0.00000
## 1308 1360.46512 0.00000
## 1309 1360.46512 0.00000
## 1310 1360.46512 0.00000
## 1311 1360.46512 0.00000
## 1312 1360.46512 0.00000
## 1313 1360.46512 0.00000
## 1314 1360.46512 0.00000
## 1315 1360.46512 0.00000
## 1316 1360.46512 0.00000
## 1317 1360.46512 0.00000
## 1318 1360.46512 0.00000
## 1319 1360.46512 0.00000
## 1320 1360.46512 0.00000
## 1321 1068.31395 0.00000
## 1322 1068.31395 0.00000
## 1323 1068.31395 0.00000
## 1324 1068.31395 0.00000
## 1325 1068.31395 0.00000
## 1326 1068.31395 0.00000
## 1327 1068.31395 0.00000
## 1328 1068.31395 0.00000
## 1329 1068.31395 0.00000
## 1330 1068.31395 0.00000
## 1331 1068.31395 0.00000
## 1332 1068.31395 0.00000
## 1333 1068.31395 0.00000
## 1334 1068.31395 0.00000
## 1335 1068.31395 0.00000
## 1336 1068.31395 0.00000
## 1337 1068.31395 0.00000
## 1338 1068.31395 0.00000
## 1339 1068.31395 0.00000
## 1340 1068.31395 0.00000
## 1341 1068.31395 0.00000
## 1342 1068.31395 0.00000
## 1343 1068.31395 0.00000
## 1344 1068.31395 0.00000
## 1345 883.43023 635.75581
## 1346 883.43023 635.75581
## 1347 883.43023 635.75581
## 1348 883.43023 635.75581
## 1349 883.43023 635.75581
## 1350 883.43023 635.75581
## 1351 883.43023 635.75581
## 1352 883.43023 635.75581
## 1353 883.43023 635.75581
## 1354 883.43023 635.75581
## 1355 883.43023 635.75581
## 1356 883.43023 635.75581
## 1357 883.43023 635.75581
## 1358 883.43023 635.75581
## 1359 883.43023 635.75581
## 1360 883.43023 635.75581
## 1361 883.43023 635.75581
## 1362 883.43023 635.75581
## 1363 883.43023 635.75581
## 1364 883.43023 635.75581
## 1365 883.43023 635.75581
## 1366 883.43023 635.75581
## 1367 883.43023 635.75581
## 1368 883.43023 635.75581
## 1369 422.09302 2162.79070
## 1370 422.09302 2162.79070
## 1371 422.09302 2162.79070
## 1372 422.09302 2162.79070
## 1373 422.09302 2162.79070
## 1374 422.09302 2162.79070
## 1375 422.09302 2162.79070
## 1376 422.09302 2162.79070
## 1377 422.09302 2162.79070
## 1378 422.09302 2162.79070
## 1379 422.09302 2162.79070
## 1380 422.09302 2162.79070
## 1381 422.09302 2162.79070
## 1382 422.09302 2162.79070
## 1383 422.09302 2162.79070
## 1384 422.09302 2162.79070
## 1385 422.09302 2162.79070
## 1386 422.09302 2162.79070
## 1387 422.09302 2162.79070
## 1388 422.09302 2162.79070
## 1389 422.09302 2162.79070
## 1390 422.09302 2162.79070
## 1391 422.09302 2162.79070
## 1392 422.09302 2162.79070
## 1393 1351.74419 1090.11628
## 1394 1351.74419 1090.11628
## 1395 1351.74419 1090.11628
## 1396 1351.74419 1090.11628
## 1397 1351.74419 1090.11628
## 1398 1351.74419 1090.11628
## 1399 1351.74419 1090.11628
## 1400 1351.74419 1090.11628
## 1401 1351.74419 1090.11628
## 1402 1351.74419 1090.11628
## 1403 1351.74419 1090.11628
## 1404 1351.74419 1090.11628
## 1405 1351.74419 1090.11628
## 1406 1351.74419 1090.11628
## 1407 1351.74419 1090.11628
## 1408 1351.74419 1090.11628
## 1409 1351.74419 1090.11628
## 1410 1351.74419 1090.11628
## 1411 1351.74419 1090.11628
## 1412 1351.74419 1090.11628
## 1413 1351.74419 1090.11628
## 1414 1351.74419 1090.11628
## 1415 1351.74419 1090.11628
## 1416 1351.74419 1090.11628
## 1417 2673.83721 0.00000
## 1418 2673.83721 0.00000
## 1419 2673.83721 0.00000
## 1420 2673.83721 0.00000
## 1421 2673.83721 0.00000
## 1422 2673.83721 0.00000
## 1423 2673.83721 0.00000
## 1424 2673.83721 0.00000
## 1425 2673.83721 0.00000
## 1426 2673.83721 0.00000
## 1427 2673.83721 0.00000
## 1428 2673.83721 0.00000
## 1429 2673.83721 0.00000
## 1430 2673.83721 0.00000
## 1431 2673.83721 0.00000
## 1432 2673.83721 0.00000
## 1433 2673.83721 0.00000
## 1434 2673.83721 0.00000
## 1435 2673.83721 0.00000
## 1436 2673.83721 0.00000
## 1437 2673.83721 0.00000
## 1438 2673.83721 0.00000
## 1439 2673.83721 0.00000
## 1440 2673.83721 0.00000
## 1441 1648.25581 2215.11628
## 1442 1648.25581 2215.11628
## 1443 1648.25581 2215.11628
## 1444 1648.25581 2215.11628
## 1445 1648.25581 2215.11628
## 1446 1648.25581 2215.11628
## 1447 1648.25581 2215.11628
## 1448 1648.25581 2215.11628
## 1449 1648.25581 2215.11628
## 1450 1648.25581 2215.11628
## 1451 1648.25581 2215.11628
## 1452 1648.25581 2215.11628
## 1453 1648.25581 2215.11628
## 1454 1648.25581 2215.11628
## 1455 1648.25581 2215.11628
## 1456 1648.25581 2215.11628
## 1457 1648.25581 2215.11628
## 1458 1648.25581 2215.11628
## 1459 1648.25581 2215.11628
## 1460 1648.25581 2215.11628
## 1461 1648.25581 2215.11628
## 1462 1648.25581 2215.11628
## 1463 1648.25581 2215.11628
## 1464 1648.25581 2215.11628
## 1465 366.27907 0.00000
## 1466 366.27907 0.00000
## 1467 366.27907 0.00000
## 1468 366.27907 0.00000
## 1469 366.27907 0.00000
## 1470 366.27907 0.00000
## 1471 366.27907 0.00000
## 1472 366.27907 0.00000
## 1473 366.27907 0.00000
## 1474 366.27907 0.00000
## 1475 366.27907 0.00000
## 1476 366.27907 0.00000
## 1477 366.27907 0.00000
## 1478 366.27907 0.00000
## 1479 366.27907 0.00000
## 1480 366.27907 0.00000
## 1481 366.27907 0.00000
## 1482 366.27907 0.00000
## 1483 366.27907 0.00000
## 1484 366.27907 0.00000
## 1485 366.27907 0.00000
## 1486 366.27907 0.00000
## 1487 366.27907 0.00000
## 1488 366.27907 0.00000
## 1489 514.53488 0.00000
## 1490 514.53488 0.00000
## 1491 514.53488 0.00000
## 1492 514.53488 0.00000
## 1493 514.53488 0.00000
## 1494 514.53488 0.00000
## 1495 514.53488 0.00000
## 1496 514.53488 0.00000
## 1497 514.53488 0.00000
## 1498 514.53488 0.00000
## 1499 514.53488 0.00000
## 1500 514.53488 0.00000
## 1501 514.53488 0.00000
## 1502 514.53488 0.00000
## 1503 514.53488 0.00000
## 1504 514.53488 0.00000
## 1505 514.53488 0.00000
## 1506 514.53488 0.00000
## 1507 514.53488 0.00000
## 1508 514.53488 0.00000
## 1509 514.53488 0.00000
## 1510 514.53488 0.00000
## 1511 514.53488 0.00000
## 1512 514.53488 0.00000
## 1513 0.00000 0.00000
## 1514 0.00000 0.00000
## 1515 0.00000 0.00000
## 1516 0.00000 0.00000
## 1517 0.00000 0.00000
## 1518 0.00000 0.00000
## 1519 0.00000 0.00000
## 1520 0.00000 0.00000
## 1521 0.00000 0.00000
## 1522 0.00000 0.00000
## 1523 0.00000 0.00000
## 1524 0.00000 0.00000
## 1525 0.00000 0.00000
## 1526 0.00000 0.00000
## 1527 0.00000 0.00000
## 1528 0.00000 0.00000
## 1529 0.00000 0.00000
## 1530 0.00000 0.00000
## 1531 0.00000 0.00000
## 1532 0.00000 0.00000
## 1533 0.00000 0.00000
## 1534 0.00000 0.00000
## 1535 0.00000 0.00000
## 1536 0.00000 0.00000
## 1537 883.43023 635.75581
## 1538 883.43023 635.75581
## 1539 883.43023 635.75581
## 1540 883.43023 635.75581
## 1541 883.43023 635.75581
## 1542 883.43023 635.75581
## 1543 883.43023 635.75581
## 1544 883.43023 635.75581
## 1545 883.43023 635.75581
## 1546 883.43023 635.75581
## 1547 883.43023 635.75581
## 1548 883.43023 635.75581
## 1549 883.43023 635.75581
## 1550 883.43023 635.75581
## 1551 883.43023 635.75581
## 1552 883.43023 635.75581
## 1553 883.43023 635.75581
## 1554 883.43023 635.75581
## 1555 883.43023 635.75581
## 1556 883.43023 635.75581
## 1557 883.43023 635.75581
## 1558 883.43023 635.75581
## 1559 883.43023 635.75581
## 1560 883.43023 635.75581
## 1561 980.23256 0.00000
## 1562 980.23256 0.00000
## 1563 980.23256 0.00000
## 1564 980.23256 0.00000
## 1565 980.23256 0.00000
## 1566 980.23256 0.00000
## 1567 980.23256 0.00000
## 1568 980.23256 0.00000
## 1569 980.23256 0.00000
## 1570 980.23256 0.00000
## 1571 980.23256 0.00000
## 1572 980.23256 0.00000
## 1573 980.23256 0.00000
## 1574 980.23256 0.00000
## 1575 980.23256 0.00000
## 1576 980.23256 0.00000
## 1577 980.23256 0.00000
## 1578 980.23256 0.00000
## 1579 980.23256 0.00000
## 1580 980.23256 0.00000
## 1581 980.23256 0.00000
## 1582 980.23256 0.00000
## 1583 980.23256 0.00000
## 1584 980.23256 0.00000
## 1585 1430.23256 235.46512
## 1586 1430.23256 235.46512
## 1587 1430.23256 235.46512
## 1588 1430.23256 235.46512
## 1589 1430.23256 235.46512
## 1590 1430.23256 235.46512
## 1591 1430.23256 235.46512
## 1592 1430.23256 235.46512
## 1593 1430.23256 235.46512
## 1594 1430.23256 235.46512
## 1595 1430.23256 235.46512
## 1596 1430.23256 235.46512
## 1597 1430.23256 235.46512
## 1598 1430.23256 235.46512
## 1599 1430.23256 235.46512
## 1600 1430.23256 235.46512
## 1601 1430.23256 235.46512
## 1602 1430.23256 235.46512
## 1603 1430.23256 235.46512
## 1604 1430.23256 235.46512
## 1605 1430.23256 235.46512
## 1606 1430.23256 235.46512
## 1607 1430.23256 235.46512
## 1608 1430.23256 235.46512
## 1609 1322.09302 0.00000
## 1610 1322.09302 0.00000
## 1611 1322.09302 0.00000
## 1612 1322.09302 0.00000
## 1613 1322.09302 0.00000
## 1614 1322.09302 0.00000
## 1615 1322.09302 0.00000
## 1616 1322.09302 0.00000
## 1617 1322.09302 0.00000
## 1618 1322.09302 0.00000
## 1619 1322.09302 0.00000
## 1620 1322.09302 0.00000
## 1621 1322.09302 0.00000
## 1622 1322.09302 0.00000
## 1623 1322.09302 0.00000
## 1624 1322.09302 0.00000
## 1625 1322.09302 0.00000
## 1626 1322.09302 0.00000
## 1627 1322.09302 0.00000
## 1628 1322.09302 0.00000
## 1629 1322.09302 0.00000
## 1630 1322.09302 0.00000
## 1631 1322.09302 0.00000
## 1632 1322.09302 0.00000
## 1633 1055.23256 1081.39535
## 1634 1055.23256 1081.39535
## 1635 1055.23256 1081.39535
## 1636 1055.23256 1081.39535
## 1637 1055.23256 1081.39535
## 1638 1055.23256 1081.39535
## 1639 1055.23256 1081.39535
## 1640 1055.23256 1081.39535
## 1641 1055.23256 1081.39535
## 1642 1055.23256 1081.39535
## 1643 1055.23256 1081.39535
## 1644 1055.23256 1081.39535
## 1645 1055.23256 1081.39535
## 1646 1055.23256 1081.39535
## 1647 1055.23256 1081.39535
## 1648 1055.23256 1081.39535
## 1649 1055.23256 1081.39535
## 1650 1055.23256 1081.39535
## 1651 1055.23256 1081.39535
## 1652 1055.23256 1081.39535
## 1653 1055.23256 1081.39535
## 1654 1055.23256 1081.39535
## 1655 1055.23256 1081.39535
## 1656 1055.23256 1081.39535
## 1657 1561.04651 0.00000
## 1658 1561.04651 0.00000
## 1659 1561.04651 0.00000
## 1660 1561.04651 0.00000
## 1661 1561.04651 0.00000
## 1662 1561.04651 0.00000
## 1663 1561.04651 0.00000
## 1664 1561.04651 0.00000
## 1665 1561.04651 0.00000
## 1666 1561.04651 0.00000
## 1667 1561.04651 0.00000
## 1668 1561.04651 0.00000
## 1669 1561.04651 0.00000
## 1670 1561.04651 0.00000
## 1671 1561.04651 0.00000
## 1672 1561.04651 0.00000
## 1673 1561.04651 0.00000
## 1674 1561.04651 0.00000
## 1675 1561.04651 0.00000
## 1676 1561.04651 0.00000
## 1677 1561.04651 0.00000
## 1678 1561.04651 0.00000
## 1679 1561.04651 0.00000
## 1680 1561.04651 0.00000
## 1681 1609.01163 0.00000
## 1682 1609.01163 0.00000
## 1683 1609.01163 0.00000
## 1684 1609.01163 0.00000
## 1685 1609.01163 0.00000
## 1686 1609.01163 0.00000
## 1687 1609.01163 0.00000
## 1688 1609.01163 0.00000
## 1689 1609.01163 0.00000
## 1690 1609.01163 0.00000
## 1691 1609.01163 0.00000
## 1692 1609.01163 0.00000
## 1693 1609.01163 0.00000
## 1694 1609.01163 0.00000
## 1695 1609.01163 0.00000
## 1696 1609.01163 0.00000
## 1697 1609.01163 0.00000
## 1698 1609.01163 0.00000
## 1699 1609.01163 0.00000
## 1700 1609.01163 0.00000
## 1701 1609.01163 0.00000
## 1702 1609.01163 0.00000
## 1703 1609.01163 0.00000
## 1704 1609.01163 0.00000
## 1705 0.00000 0.00000
## 1706 0.00000 0.00000
## 1707 0.00000 0.00000
## 1708 0.00000 0.00000
## 1709 0.00000 0.00000
## 1710 0.00000 0.00000
## 1711 0.00000 0.00000
## 1712 0.00000 0.00000
## 1713 0.00000 0.00000
## 1714 0.00000 0.00000
## 1715 0.00000 0.00000
## 1716 0.00000 0.00000
## 1717 0.00000 0.00000
## 1718 0.00000 0.00000
## 1719 0.00000 0.00000
## 1720 0.00000 0.00000
## 1721 0.00000 0.00000
## 1722 0.00000 0.00000
## 1723 0.00000 0.00000
## 1724 0.00000 0.00000
## 1725 0.00000 0.00000
## 1726 0.00000 0.00000
## 1727 0.00000 0.00000
## 1728 0.00000 0.00000
## 1729 883.43023 635.75581
## 1730 883.43023 635.75581
## 1731 883.43023 635.75581
## 1732 883.43023 635.75581
## 1733 883.43023 635.75581
## 1734 883.43023 635.75581
## 1735 883.43023 635.75581
## 1736 883.43023 635.75581
## 1737 883.43023 635.75581
## 1738 883.43023 635.75581
## 1739 883.43023 635.75581
## 1740 883.43023 635.75581
## 1741 883.43023 635.75581
## 1742 883.43023 635.75581
## 1743 883.43023 635.75581
## 1744 883.43023 635.75581
## 1745 883.43023 635.75581
## 1746 883.43023 635.75581
## 1747 883.43023 635.75581
## 1748 883.43023 635.75581
## 1749 883.43023 635.75581
## 1750 883.43023 635.75581
## 1751 883.43023 635.75581
## 1752 883.43023 635.75581
## 1753 3221.51163 0.00000
## 1754 3221.51163 0.00000
## 1755 3221.51163 0.00000
## 1756 3221.51163 0.00000
## 1757 3221.51163 0.00000
## 1758 3221.51163 0.00000
## 1759 3221.51163 0.00000
## 1760 3221.51163 0.00000
## 1761 3221.51163 0.00000
## 1762 3221.51163 0.00000
## 1763 3221.51163 0.00000
## 1764 3221.51163 0.00000
## 1765 3221.51163 0.00000
## 1766 3221.51163 0.00000
## 1767 3221.51163 0.00000
## 1768 3221.51163 0.00000
## 1769 3221.51163 0.00000
## 1770 3221.51163 0.00000
## 1771 3221.51163 0.00000
## 1772 3221.51163 0.00000
## 1773 3221.51163 0.00000
## 1774 3221.51163 0.00000
## 1775 3221.51163 0.00000
## 1776 3221.51163 0.00000
## 1777 322.67442 1055.23256
## 1778 322.67442 1055.23256
## 1779 322.67442 1055.23256
## 1780 322.67442 1055.23256
## 1781 322.67442 1055.23256
## 1782 322.67442 1055.23256
## 1783 322.67442 1055.23256
## 1784 322.67442 1055.23256
## 1785 322.67442 1055.23256
## 1786 322.67442 1055.23256
## 1787 322.67442 1055.23256
## 1788 322.67442 1055.23256
## 1789 322.67442 1055.23256
## 1790 322.67442 1055.23256
## 1791 322.67442 1055.23256
## 1792 322.67442 1055.23256
## 1793 322.67442 1055.23256
## 1794 322.67442 1055.23256
## 1795 322.67442 1055.23256
## 1796 322.67442 1055.23256
## 1797 322.67442 1055.23256
## 1798 322.67442 1055.23256
## 1799 322.67442 1055.23256
## 1800 322.67442 1055.23256
## 1801 3005.23256 3427.32558
## 1802 3005.23256 3427.32558
## 1803 3005.23256 3427.32558
## 1804 3005.23256 3427.32558
## 1805 3005.23256 3427.32558
## 1806 3005.23256 3427.32558
## 1807 3005.23256 3427.32558
## 1808 3005.23256 3427.32558
## 1809 3005.23256 3427.32558
## 1810 3005.23256 3427.32558
## 1811 3005.23256 3427.32558
## 1812 3005.23256 3427.32558
## 1813 3005.23256 3427.32558
## 1814 3005.23256 3427.32558
## 1815 3005.23256 3427.32558
## 1816 3005.23256 3427.32558
## 1817 3005.23256 3427.32558
## 1818 3005.23256 3427.32558
## 1819 3005.23256 3427.32558
## 1820 3005.23256 3427.32558
## 1821 3005.23256 3427.32558
## 1822 3005.23256 3427.32558
## 1823 3005.23256 3427.32558
## 1824 3005.23256 3427.32558
## 1825 409.88372 3706.39535
## 1826 409.88372 3706.39535
## 1827 409.88372 3706.39535
## 1828 409.88372 3706.39535
## 1829 409.88372 3706.39535
## 1830 409.88372 3706.39535
## 1831 409.88372 3706.39535
## 1832 409.88372 3706.39535
## 1833 409.88372 3706.39535
## 1834 409.88372 3706.39535
## 1835 409.88372 3706.39535
## 1836 409.88372 3706.39535
## 1837 409.88372 3706.39535
## 1838 409.88372 3706.39535
## 1839 409.88372 3706.39535
## 1840 409.88372 3706.39535
## 1841 409.88372 3706.39535
## 1842 409.88372 3706.39535
## 1843 409.88372 3706.39535
## 1844 409.88372 3706.39535
## 1845 409.88372 3706.39535
## 1846 409.88372 3706.39535
## 1847 409.88372 3706.39535
## 1848 409.88372 3706.39535
## 1849 2406.97674 1090.11628
## 1850 2406.97674 1090.11628
## 1851 2406.97674 1090.11628
## 1852 2406.97674 1090.11628
## 1853 2406.97674 1090.11628
## 1854 2406.97674 1090.11628
## 1855 2406.97674 1090.11628
## 1856 2406.97674 1090.11628
## 1857 2406.97674 1090.11628
## 1858 2406.97674 1090.11628
## 1859 2406.97674 1090.11628
## 1860 2406.97674 1090.11628
## 1861 2406.97674 1090.11628
## 1862 2406.97674 1090.11628
## 1863 2406.97674 1090.11628
## 1864 2406.97674 1090.11628
## 1865 2406.97674 1090.11628
## 1866 2406.97674 1090.11628
## 1867 2406.97674 1090.11628
## 1868 2406.97674 1090.11628
## 1869 2406.97674 1090.11628
## 1870 2406.97674 1090.11628
## 1871 2406.97674 1090.11628
## 1872 2406.97674 1090.11628
## 1873 2132.26744 1090.11628
## 1874 2132.26744 1090.11628
## 1875 2132.26744 1090.11628
## 1876 2132.26744 1090.11628
## 1877 2132.26744 1090.11628
## 1878 2132.26744 1090.11628
## 1879 2132.26744 1090.11628
## 1880 2132.26744 1090.11628
## 1881 2132.26744 1090.11628
## 1882 2132.26744 1090.11628
## 1883 2132.26744 1090.11628
## 1884 2132.26744 1090.11628
## 1885 2132.26744 1090.11628
## 1886 2132.26744 1090.11628
## 1887 2132.26744 1090.11628
## 1888 2132.26744 1090.11628
## 1889 2132.26744 1090.11628
## 1890 2132.26744 1090.11628
## 1891 2132.26744 1090.11628
## 1892 2132.26744 1090.11628
## 1893 2132.26744 1090.11628
## 1894 2132.26744 1090.11628
## 1895 2132.26744 1090.11628
## 1896 2132.26744 1090.11628
## 1897 1848.83721 0.00000
## 1898 1848.83721 0.00000
## 1899 1848.83721 0.00000
## 1900 1848.83721 0.00000
## 1901 1848.83721 0.00000
## 1902 1848.83721 0.00000
## 1903 1848.83721 0.00000
## 1904 1848.83721 0.00000
## 1905 1848.83721 0.00000
## 1906 1848.83721 0.00000
## 1907 1848.83721 0.00000
## 1908 1848.83721 0.00000
## 1909 1848.83721 0.00000
## 1910 1848.83721 0.00000
## 1911 1848.83721 0.00000
## 1912 1848.83721 0.00000
## 1913 1848.83721 0.00000
## 1914 1848.83721 0.00000
## 1915 1848.83721 0.00000
## 1916 1848.83721 0.00000
## 1917 1848.83721 0.00000
## 1918 1848.83721 0.00000
## 1919 1848.83721 0.00000
## 1920 1848.83721 0.00000
## 1921 883.43023 635.75581
## 1922 883.43023 635.75581
## 1923 883.43023 635.75581
## 1924 883.43023 635.75581
## 1925 883.43023 635.75581
## 1926 883.43023 635.75581
## 1927 883.43023 635.75581
## 1928 883.43023 635.75581
## 1929 883.43023 635.75581
## 1930 883.43023 635.75581
## 1931 883.43023 635.75581
## 1932 883.43023 635.75581
## 1933 883.43023 635.75581
## 1934 883.43023 635.75581
## 1935 883.43023 635.75581
## 1936 883.43023 635.75581
## 1937 883.43023 635.75581
## 1938 883.43023 635.75581
## 1939 883.43023 635.75581
## 1940 883.43023 635.75581
## 1941 883.43023 635.75581
## 1942 883.43023 635.75581
## 1943 883.43023 635.75581
## 1944 883.43023 635.75581
## 1945 2014.53488 1055.23256
## 1946 2014.53488 1055.23256
## 1947 2014.53488 1055.23256
## 1948 2014.53488 1055.23256
## 1949 2014.53488 1055.23256
## 1950 2014.53488 1055.23256
## 1951 2014.53488 1055.23256
## 1952 2014.53488 1055.23256
## 1953 2014.53488 1055.23256
## 1954 2014.53488 1055.23256
## 1955 2014.53488 1055.23256
## 1956 2014.53488 1055.23256
## 1957 2014.53488 1055.23256
## 1958 2014.53488 1055.23256
## 1959 2014.53488 1055.23256
## 1960 2014.53488 1055.23256
## 1961 2014.53488 1055.23256
## 1962 2014.53488 1055.23256
## 1963 2014.53488 1055.23256
## 1964 2014.53488 1055.23256
## 1965 2014.53488 1055.23256
## 1966 2014.53488 1055.23256
## 1967 2014.53488 1055.23256
## 1968 2014.53488 1055.23256
## 1969 1090.11628 1090.11628
## 1970 1090.11628 1090.11628
## 1971 1090.11628 1090.11628
## 1972 1090.11628 1090.11628
## 1973 1090.11628 1090.11628
## 1974 1090.11628 1090.11628
## 1975 1090.11628 1090.11628
## 1976 1090.11628 1090.11628
## 1977 1090.11628 1090.11628
## 1978 1090.11628 1090.11628
## 1979 1090.11628 1090.11628
## 1980 1090.11628 1090.11628
## 1981 1090.11628 1090.11628
## 1982 1090.11628 1090.11628
## 1983 1090.11628 1090.11628
## 1984 1090.11628 1090.11628
## 1985 1090.11628 1090.11628
## 1986 1090.11628 1090.11628
## 1987 1090.11628 1090.11628
## 1988 1090.11628 1090.11628
## 1989 1090.11628 1090.11628
## 1990 1090.11628 1090.11628
## 1991 1090.11628 1090.11628
## 1992 1090.11628 1090.11628
## 1993 3636.62791 2180.23256
## 1994 3636.62791 2180.23256
## 1995 3636.62791 2180.23256
## 1996 3636.62791 2180.23256
## 1997 3636.62791 2180.23256
## 1998 3636.62791 2180.23256
## 1999 3636.62791 2180.23256
## 2000 3636.62791 2180.23256
## 2001 3636.62791 2180.23256
## 2002 3636.62791 2180.23256
## 2003 3636.62791 2180.23256
## 2004 3636.62791 2180.23256
## 2005 3636.62791 2180.23256
## 2006 3636.62791 2180.23256
## 2007 3636.62791 2180.23256
## 2008 3636.62791 2180.23256
## 2009 3636.62791 2180.23256
## 2010 3636.62791 2180.23256
## 2011 3636.62791 2180.23256
## 2012 3636.62791 2180.23256
## 2013 3636.62791 2180.23256
## 2014 3636.62791 2180.23256
## 2015 3636.62791 2180.23256
## 2016 3636.62791 2180.23256
## 2017 1709.30233 549.41860
## 2018 1709.30233 549.41860
## 2019 1709.30233 549.41860
## 2020 1709.30233 549.41860
## 2021 1709.30233 549.41860
## 2022 1709.30233 549.41860
## 2023 1709.30233 549.41860
## 2024 1709.30233 549.41860
## 2025 1709.30233 549.41860
## 2026 1709.30233 549.41860
## 2027 1709.30233 549.41860
## 2028 1709.30233 549.41860
## 2029 1709.30233 549.41860
## 2030 1709.30233 549.41860
## 2031 1709.30233 549.41860
## 2032 1709.30233 549.41860
## 2033 1709.30233 549.41860
## 2034 1709.30233 549.41860
## 2035 1709.30233 549.41860
## 2036 1709.30233 549.41860
## 2037 1709.30233 549.41860
## 2038 1709.30233 549.41860
## 2039 1709.30233 549.41860
## 2040 1709.30233 549.41860
## 2041 540.69767 0.00000
## 2042 540.69767 0.00000
## 2043 540.69767 0.00000
## 2044 540.69767 0.00000
## 2045 540.69767 0.00000
## 2046 540.69767 0.00000
## 2047 540.69767 0.00000
## 2048 540.69767 0.00000
## 2049 540.69767 0.00000
## 2050 540.69767 0.00000
## 2051 540.69767 0.00000
## 2052 540.69767 0.00000
## 2053 540.69767 0.00000
## 2054 540.69767 0.00000
## 2055 540.69767 0.00000
## 2056 540.69767 0.00000
## 2057 540.69767 0.00000
## 2058 540.69767 0.00000
## 2059 540.69767 0.00000
## 2060 540.69767 0.00000
## 2061 540.69767 0.00000
## 2062 540.69767 0.00000
## 2063 540.69767 0.00000
## 2064 540.69767 0.00000
## 2065 1263.66279 0.00000
## 2066 1263.66279 0.00000
## 2067 1263.66279 0.00000
## 2068 1263.66279 0.00000
## 2069 1263.66279 0.00000
## 2070 1263.66279 0.00000
## 2071 1263.66279 0.00000
## 2072 1263.66279 0.00000
## 2073 1263.66279 0.00000
## 2074 1263.66279 0.00000
## 2075 1263.66279 0.00000
## 2076 1263.66279 0.00000
## 2077 1263.66279 0.00000
## 2078 1263.66279 0.00000
## 2079 1263.66279 0.00000
## 2080 1263.66279 0.00000
## 2081 1263.66279 0.00000
## 2082 1263.66279 0.00000
## 2083 1263.66279 0.00000
## 2084 1263.66279 0.00000
## 2085 1263.66279 0.00000
## 2086 1263.66279 0.00000
## 2087 1263.66279 0.00000
## 2088 1263.66279 0.00000
## 2089 1063.95349 126.45349
## 2090 1063.95349 126.45349
## 2091 1063.95349 126.45349
## 2092 1063.95349 126.45349
## 2093 1063.95349 126.45349
## 2094 1063.95349 126.45349
## 2095 1063.95349 126.45349
## 2096 1063.95349 126.45349
## 2097 1063.95349 126.45349
## 2098 1063.95349 126.45349
## 2099 1063.95349 126.45349
## 2100 1063.95349 126.45349
## 2101 1063.95349 126.45349
## 2102 1063.95349 126.45349
## 2103 1063.95349 126.45349
## 2104 1063.95349 126.45349
## 2105 1063.95349 126.45349
## 2106 1063.95349 126.45349
## 2107 1063.95349 126.45349
## 2108 1063.95349 126.45349
## 2109 1063.95349 126.45349
## 2110 1063.95349 126.45349
## 2111 1063.95349 126.45349
## 2112 1063.95349 126.45349
## 2113 883.43023 635.75581
## 2114 883.43023 635.75581
## 2115 883.43023 635.75581
## 2116 883.43023 635.75581
## 2117 883.43023 635.75581
## 2118 883.43023 635.75581
## 2119 883.43023 635.75581
## 2120 883.43023 635.75581
## 2121 883.43023 635.75581
## 2122 883.43023 635.75581
## 2123 883.43023 635.75581
## 2124 883.43023 635.75581
## 2125 883.43023 635.75581
## 2126 883.43023 635.75581
## 2127 883.43023 635.75581
## 2128 883.43023 635.75581
## 2129 883.43023 635.75581
## 2130 883.43023 635.75581
## 2131 883.43023 635.75581
## 2132 883.43023 635.75581
## 2133 883.43023 635.75581
## 2134 883.43023 635.75581
## 2135 883.43023 635.75581
## 2136 883.43023 635.75581
## 2137 5869.18605 1029.06977
## 2138 5869.18605 1029.06977
## 2139 5869.18605 1029.06977
## 2140 5869.18605 1029.06977
## 2141 5869.18605 1029.06977
## 2142 5869.18605 1029.06977
## 2143 5869.18605 1029.06977
## 2144 5869.18605 1029.06977
## 2145 5869.18605 1029.06977
## 2146 5869.18605 1029.06977
## 2147 5869.18605 1029.06977
## 2148 5869.18605 1029.06977
## 2149 5869.18605 1029.06977
## 2150 5869.18605 1029.06977
## 2151 5869.18605 1029.06977
## 2152 5869.18605 1029.06977
## 2153 5869.18605 1029.06977
## 2154 5869.18605 1029.06977
## 2155 5869.18605 1029.06977
## 2156 5869.18605 1029.06977
## 2157 5869.18605 1029.06977
## 2158 5869.18605 1029.06977
## 2159 5869.18605 1029.06977
## 2160 5869.18605 1029.06977
## 2161 0.00000 0.00000
## 2162 0.00000 0.00000
## 2163 0.00000 0.00000
## 2164 0.00000 0.00000
## 2165 0.00000 0.00000
## 2166 0.00000 0.00000
## 2167 0.00000 0.00000
## 2168 0.00000 0.00000
## 2169 0.00000 0.00000
## 2170 0.00000 0.00000
## 2171 0.00000 0.00000
## 2172 0.00000 0.00000
## 2173 0.00000 0.00000
## 2174 0.00000 0.00000
## 2175 0.00000 0.00000
## 2176 0.00000 0.00000
## 2177 0.00000 0.00000
## 2178 0.00000 0.00000
## 2179 0.00000 0.00000
## 2180 0.00000 0.00000
## 2181 0.00000 0.00000
## 2182 0.00000 0.00000
## 2183 0.00000 0.00000
## 2184 0.00000 0.00000
## 2185 0.00000 2188.95349
## 2186 0.00000 2188.95349
## 2187 0.00000 2188.95349
## 2188 0.00000 2188.95349
## 2189 0.00000 2188.95349
## 2190 0.00000 2188.95349
## 2191 0.00000 2188.95349
## 2192 0.00000 2188.95349
## 2193 0.00000 2188.95349
## 2194 0.00000 2188.95349
## 2195 0.00000 2188.95349
## 2196 0.00000 2188.95349
## 2197 0.00000 2188.95349
## 2198 0.00000 2188.95349
## 2199 0.00000 2188.95349
## 2200 0.00000 2188.95349
## 2201 0.00000 2188.95349
## 2202 0.00000 2188.95349
## 2203 0.00000 2188.95349
## 2204 0.00000 2188.95349
## 2205 0.00000 2188.95349
## 2206 0.00000 2188.95349
## 2207 0.00000 2188.95349
## 2208 0.00000 2188.95349
## 2209 0.00000 3654.06977
## 2210 0.00000 3654.06977
## 2211 0.00000 3654.06977
## 2212 0.00000 3654.06977
## 2213 0.00000 3654.06977
## 2214 0.00000 3654.06977
## 2215 0.00000 3654.06977
## 2216 0.00000 3654.06977
## 2217 0.00000 3654.06977
## 2218 0.00000 3654.06977
## 2219 0.00000 3654.06977
## 2220 0.00000 3654.06977
## 2221 0.00000 3654.06977
## 2222 0.00000 3654.06977
## 2223 0.00000 3654.06977
## 2224 0.00000 3654.06977
## 2225 0.00000 3654.06977
## 2226 0.00000 3654.06977
## 2227 0.00000 3654.06977
## 2228 0.00000 3654.06977
## 2229 0.00000 3654.06977
## 2230 0.00000 3654.06977
## 2231 0.00000 3654.06977
## 2232 0.00000 3654.06977
## 2233 976.74419 287.79070
## 2234 976.74419 287.79070
## 2235 976.74419 287.79070
## 2236 976.74419 287.79070
## 2237 976.74419 287.79070
## 2238 976.74419 287.79070
## 2239 976.74419 287.79070
## 2240 976.74419 287.79070
## 2241 976.74419 287.79070
## 2242 976.74419 287.79070
## 2243 976.74419 287.79070
## 2244 976.74419 287.79070
## 2245 976.74419 287.79070
## 2246 976.74419 287.79070
## 2247 976.74419 287.79070
## 2248 976.74419 287.79070
## 2249 976.74419 287.79070
## 2250 976.74419 287.79070
## 2251 976.74419 287.79070
## 2252 976.74419 287.79070
## 2253 976.74419 287.79070
## 2254 976.74419 287.79070
## 2255 976.74419 287.79070
## 2256 976.74419 287.79070
## 2257 1442.44186 0.00000
## 2258 1442.44186 0.00000
## 2259 1442.44186 0.00000
## 2260 1442.44186 0.00000
## 2261 1442.44186 0.00000
## 2262 1442.44186 0.00000
## 2263 1442.44186 0.00000
## 2264 1442.44186 0.00000
## 2265 1442.44186 0.00000
## 2266 1442.44186 0.00000
## 2267 1442.44186 0.00000
## 2268 1442.44186 0.00000
## 2269 1442.44186 0.00000
## 2270 1442.44186 0.00000
## 2271 1442.44186 0.00000
## 2272 1442.44186 0.00000
## 2273 1442.44186 0.00000
## 2274 1442.44186 0.00000
## 2275 1442.44186 0.00000
## 2276 1442.44186 0.00000
## 2277 1442.44186 0.00000
## 2278 1442.44186 0.00000
## 2279 1442.44186 0.00000
## 2280 1442.44186 0.00000
## 2281 1068.31395 0.00000
## 2282 1068.31395 0.00000
## 2283 1068.31395 0.00000
## 2284 1068.31395 0.00000
## 2285 1068.31395 0.00000
## 2286 1068.31395 0.00000
## 2287 1068.31395 0.00000
## 2288 1068.31395 0.00000
## 2289 1068.31395 0.00000
## 2290 1068.31395 0.00000
## 2291 1068.31395 0.00000
## 2292 1068.31395 0.00000
## 2293 1068.31395 0.00000
## 2294 1068.31395 0.00000
## 2295 1068.31395 0.00000
## 2296 1068.31395 0.00000
## 2297 1068.31395 0.00000
## 2298 1068.31395 0.00000
## 2299 1068.31395 0.00000
## 2300 1068.31395 0.00000
## 2301 1068.31395 0.00000
## 2302 1068.31395 0.00000
## 2303 1068.31395 0.00000
## 2304 1068.31395 0.00000
## 2305 883.43023 635.75581
## 2306 883.43023 635.75581
## 2307 883.43023 635.75581
## 2308 883.43023 635.75581
## 2309 883.43023 635.75581
## 2310 883.43023 635.75581
## 2311 883.43023 635.75581
## 2312 883.43023 635.75581
## 2313 883.43023 635.75581
## 2314 883.43023 635.75581
## 2315 883.43023 635.75581
## 2316 883.43023 635.75581
## 2317 883.43023 635.75581
## 2318 883.43023 635.75581
## 2319 883.43023 635.75581
## 2320 883.43023 635.75581
## 2321 883.43023 635.75581
## 2322 883.43023 635.75581
## 2323 883.43023 635.75581
## 2324 883.43023 635.75581
## 2325 883.43023 635.75581
## 2326 883.43023 635.75581
## 2327 883.43023 635.75581
## 2328 883.43023 635.75581
## 2329 305.23256 2162.79070
## 2330 305.23256 2162.79070
## 2331 305.23256 2162.79070
## 2332 305.23256 2162.79070
## 2333 305.23256 2162.79070
## 2334 305.23256 2162.79070
## 2335 305.23256 2162.79070
## 2336 305.23256 2162.79070
## 2337 305.23256 2162.79070
## 2338 305.23256 2162.79070
## 2339 305.23256 2162.79070
## 2340 305.23256 2162.79070
## 2341 305.23256 2162.79070
## 2342 305.23256 2162.79070
## 2343 305.23256 2162.79070
## 2344 305.23256 2162.79070
## 2345 305.23256 2162.79070
## 2346 305.23256 2162.79070
## 2347 305.23256 2162.79070
## 2348 305.23256 2162.79070
## 2349 305.23256 2162.79070
## 2350 305.23256 2162.79070
## 2351 305.23256 2162.79070
## 2352 305.23256 2162.79070
## 2353 1029.06977 1090.11628
## 2354 1029.06977 1090.11628
## 2355 1029.06977 1090.11628
## 2356 1029.06977 1090.11628
## 2357 1029.06977 1090.11628
## 2358 1029.06977 1090.11628
## 2359 1029.06977 1090.11628
## 2360 1029.06977 1090.11628
## 2361 1029.06977 1090.11628
## 2362 1029.06977 1090.11628
## 2363 1029.06977 1090.11628
## 2364 1029.06977 1090.11628
## 2365 1029.06977 1090.11628
## 2366 1029.06977 1090.11628
## 2367 1029.06977 1090.11628
## 2368 1029.06977 1090.11628
## 2369 1029.06977 1090.11628
## 2370 1029.06977 1090.11628
## 2371 1029.06977 1090.11628
## 2372 1029.06977 1090.11628
## 2373 1029.06977 1090.11628
## 2374 1029.06977 1090.11628
## 2375 1029.06977 1090.11628
## 2376 1029.06977 1090.11628
## 2377 2581.39535 0.00000
## 2378 2581.39535 0.00000
## 2379 2581.39535 0.00000
## 2380 2581.39535 0.00000
## 2381 2581.39535 0.00000
## 2382 2581.39535 0.00000
## 2383 2581.39535 0.00000
## 2384 2581.39535 0.00000
## 2385 2581.39535 0.00000
## 2386 2581.39535 0.00000
## 2387 2581.39535 0.00000
## 2388 2581.39535 0.00000
## 2389 2581.39535 0.00000
## 2390 2581.39535 0.00000
## 2391 2581.39535 0.00000
## 2392 2581.39535 0.00000
## 2393 2581.39535 0.00000
## 2394 2581.39535 0.00000
## 2395 2581.39535 0.00000
## 2396 2581.39535 0.00000
## 2397 2581.39535 0.00000
## 2398 2581.39535 0.00000
## 2399 2581.39535 0.00000
## 2400 2581.39535 0.00000
## 2401 1648.25581 2215.11628
## 2402 1648.25581 2215.11628
## 2403 1648.25581 2215.11628
## 2404 1648.25581 2215.11628
## 2405 1648.25581 2215.11628
## 2406 1648.25581 2215.11628
## 2407 1648.25581 2215.11628
## 2408 1648.25581 2215.11628
## 2409 1648.25581 2215.11628
## 2410 1648.25581 2215.11628
## 2411 1648.25581 2215.11628
## 2412 1648.25581 2215.11628
## 2413 1648.25581 2215.11628
## 2414 1648.25581 2215.11628
## 2415 1648.25581 2215.11628
## 2416 1648.25581 2215.11628
## 2417 1648.25581 2215.11628
## 2418 1648.25581 2215.11628
## 2419 1648.25581 2215.11628
## 2420 1648.25581 2215.11628
## 2421 1648.25581 2215.11628
## 2422 1648.25581 2215.11628
## 2423 1648.25581 2215.11628
## 2424 1648.25581 2215.11628
## 2425 366.27907 0.00000
## 2426 366.27907 0.00000
## 2427 366.27907 0.00000
## 2428 366.27907 0.00000
## 2429 366.27907 0.00000
## 2430 366.27907 0.00000
## 2431 366.27907 0.00000
## 2432 366.27907 0.00000
## 2433 366.27907 0.00000
## 2434 366.27907 0.00000
## 2435 366.27907 0.00000
## 2436 366.27907 0.00000
## 2437 366.27907 0.00000
## 2438 366.27907 0.00000
## 2439 366.27907 0.00000
## 2440 366.27907 0.00000
## 2441 366.27907 0.00000
## 2442 366.27907 0.00000
## 2443 366.27907 0.00000
## 2444 366.27907 0.00000
## 2445 366.27907 0.00000
## 2446 366.27907 0.00000
## 2447 366.27907 0.00000
## 2448 366.27907 0.00000
## 2449 596.51163 0.00000
## 2450 596.51163 0.00000
## 2451 596.51163 0.00000
## 2452 596.51163 0.00000
## 2453 596.51163 0.00000
## 2454 596.51163 0.00000
## 2455 596.51163 0.00000
## 2456 596.51163 0.00000
## 2457 596.51163 0.00000
## 2458 596.51163 0.00000
## 2459 596.51163 0.00000
## 2460 596.51163 0.00000
## 2461 596.51163 0.00000
## 2462 596.51163 0.00000
## 2463 596.51163 0.00000
## 2464 596.51163 0.00000
## 2465 596.51163 0.00000
## 2466 596.51163 0.00000
## 2467 596.51163 0.00000
## 2468 596.51163 0.00000
## 2469 596.51163 0.00000
## 2470 596.51163 0.00000
## 2471 596.51163 0.00000
## 2472 596.51163 0.00000
## 2473 0.00000 0.00000
## 2474 0.00000 0.00000
## 2475 0.00000 0.00000
## 2476 0.00000 0.00000
## 2477 0.00000 0.00000
## 2478 0.00000 0.00000
## 2479 0.00000 0.00000
## 2480 0.00000 0.00000
## 2481 0.00000 0.00000
## 2482 0.00000 0.00000
## 2483 0.00000 0.00000
## 2484 0.00000 0.00000
## 2485 0.00000 0.00000
## 2486 0.00000 0.00000
## 2487 0.00000 0.00000
## 2488 0.00000 0.00000
## 2489 0.00000 0.00000
## 2490 0.00000 0.00000
## 2491 0.00000 0.00000
## 2492 0.00000 0.00000
## 2493 0.00000 0.00000
## 2494 0.00000 0.00000
## 2495 0.00000 0.00000
## 2496 0.00000 0.00000
## 2497 883.43023 635.75581
## 2498 883.43023 635.75581
## 2499 883.43023 635.75581
## 2500 883.43023 635.75581
## 2501 883.43023 635.75581
## 2502 883.43023 635.75581
## 2503 883.43023 635.75581
## 2504 883.43023 635.75581
## 2505 883.43023 635.75581
## 2506 883.43023 635.75581
## 2507 883.43023 635.75581
## 2508 883.43023 635.75581
## 2509 883.43023 635.75581
## 2510 883.43023 635.75581
## 2511 883.43023 635.75581
## 2512 883.43023 635.75581
## 2513 883.43023 635.75581
## 2514 883.43023 635.75581
## 2515 883.43023 635.75581
## 2516 883.43023 635.75581
## 2517 883.43023 635.75581
## 2518 883.43023 635.75581
## 2519 883.43023 635.75581
## 2520 883.43023 635.75581
## 2521 863.37209 0.00000
## 2522 863.37209 0.00000
## 2523 863.37209 0.00000
## 2524 863.37209 0.00000
## 2525 863.37209 0.00000
## 2526 863.37209 0.00000
## 2527 863.37209 0.00000
## 2528 863.37209 0.00000
## 2529 863.37209 0.00000
## 2530 863.37209 0.00000
## 2531 863.37209 0.00000
## 2532 863.37209 0.00000
## 2533 863.37209 0.00000
## 2534 863.37209 0.00000
## 2535 863.37209 0.00000
## 2536 863.37209 0.00000
## 2537 863.37209 0.00000
## 2538 863.37209 0.00000
## 2539 863.37209 0.00000
## 2540 863.37209 0.00000
## 2541 863.37209 0.00000
## 2542 863.37209 0.00000
## 2543 863.37209 0.00000
## 2544 863.37209 0.00000
## 2545 1107.55814 235.46512
## 2546 1107.55814 235.46512
## 2547 1107.55814 235.46512
## 2548 1107.55814 235.46512
## 2549 1107.55814 235.46512
## 2550 1107.55814 235.46512
## 2551 1107.55814 235.46512
## 2552 1107.55814 235.46512
## 2553 1107.55814 235.46512
## 2554 1107.55814 235.46512
## 2555 1107.55814 235.46512
## 2556 1107.55814 235.46512
## 2557 1107.55814 235.46512
## 2558 1107.55814 235.46512
## 2559 1107.55814 235.46512
## 2560 1107.55814 235.46512
## 2561 1107.55814 235.46512
## 2562 1107.55814 235.46512
## 2563 1107.55814 235.46512
## 2564 1107.55814 235.46512
## 2565 1107.55814 235.46512
## 2566 1107.55814 235.46512
## 2567 1107.55814 235.46512
## 2568 1107.55814 235.46512
## 2569 1229.65116 0.00000
## 2570 1229.65116 0.00000
## 2571 1229.65116 0.00000
## 2572 1229.65116 0.00000
## 2573 1229.65116 0.00000
## 2574 1229.65116 0.00000
## 2575 1229.65116 0.00000
## 2576 1229.65116 0.00000
## 2577 1229.65116 0.00000
## 2578 1229.65116 0.00000
## 2579 1229.65116 0.00000
## 2580 1229.65116 0.00000
## 2581 1229.65116 0.00000
## 2582 1229.65116 0.00000
## 2583 1229.65116 0.00000
## 2584 1229.65116 0.00000
## 2585 1229.65116 0.00000
## 2586 1229.65116 0.00000
## 2587 1229.65116 0.00000
## 2588 1229.65116 0.00000
## 2589 1229.65116 0.00000
## 2590 1229.65116 0.00000
## 2591 1229.65116 0.00000
## 2592 1229.65116 0.00000
## 2593 1055.23256 1081.39535
## 2594 1055.23256 1081.39535
## 2595 1055.23256 1081.39535
## 2596 1055.23256 1081.39535
## 2597 1055.23256 1081.39535
## 2598 1055.23256 1081.39535
## 2599 1055.23256 1081.39535
## 2600 1055.23256 1081.39535
## 2601 1055.23256 1081.39535
## 2602 1055.23256 1081.39535
## 2603 1055.23256 1081.39535
## 2604 1055.23256 1081.39535
## 2605 1055.23256 1081.39535
## 2606 1055.23256 1081.39535
## 2607 1055.23256 1081.39535
## 2608 1055.23256 1081.39535
## 2609 1055.23256 1081.39535
## 2610 1055.23256 1081.39535
## 2611 1055.23256 1081.39535
## 2612 1055.23256 1081.39535
## 2613 1055.23256 1081.39535
## 2614 1055.23256 1081.39535
## 2615 1055.23256 1081.39535
## 2616 1055.23256 1081.39535
## 2617 1561.04651 0.00000
## 2618 1561.04651 0.00000
## 2619 1561.04651 0.00000
## 2620 1561.04651 0.00000
## 2621 1561.04651 0.00000
## 2622 1561.04651 0.00000
## 2623 1561.04651 0.00000
## 2624 1561.04651 0.00000
## 2625 1561.04651 0.00000
## 2626 1561.04651 0.00000
## 2627 1561.04651 0.00000
## 2628 1561.04651 0.00000
## 2629 1561.04651 0.00000
## 2630 1561.04651 0.00000
## 2631 1561.04651 0.00000
## total_metaecosystem_Spi_te_indiv total_metaecosystem_Tet_indiv connection
## 1 981.9767 2243.895 isolated
## 2 981.9767 2243.895 isolated
## 3 981.9767 2243.895 isolated
## 4 981.9767 2243.895 isolated
## 5 981.9767 2243.895 isolated
## 6 981.9767 2243.895 isolated
## 7 981.9767 2243.895 isolated
## 8 981.9767 2243.895 isolated
## 9 981.9767 2243.895 isolated
## 10 981.9767 2243.895 isolated
## 11 981.9767 2243.895 isolated
## 12 981.9767 2243.895 isolated
## 13 981.9767 2243.895 isolated
## 14 981.9767 2243.895 isolated
## 15 981.9767 2243.895 isolated
## 16 981.9767 2243.895 isolated
## 17 981.9767 2243.895 isolated
## 18 981.9767 2243.895 isolated
## 19 981.9767 2243.895 isolated
## 20 981.9767 2243.895 isolated
## 21 981.9767 2243.895 isolated
## 22 981.9767 2243.895 isolated
## 23 981.9767 2243.895 isolated
## 24 981.9767 2243.895 isolated
## 25 1090.1163 0.000 isolated
## 26 1090.1163 0.000 isolated
## 27 1090.1163 0.000 isolated
## 28 1090.1163 0.000 isolated
## 29 1090.1163 0.000 isolated
## 30 1090.1163 0.000 isolated
## 31 1090.1163 0.000 isolated
## 32 1090.1163 0.000 isolated
## 33 1090.1163 0.000 isolated
## 34 1090.1163 0.000 isolated
## 35 1090.1163 0.000 isolated
## 36 1090.1163 0.000 isolated
## 37 1090.1163 0.000 isolated
## 38 1090.1163 0.000 isolated
## 39 1090.1163 0.000 isolated
## 40 1090.1163 0.000 isolated
## 41 1090.1163 0.000 isolated
## 42 1090.1163 0.000 isolated
## 43 1090.1163 0.000 isolated
## 44 1090.1163 0.000 isolated
## 45 1090.1163 0.000 isolated
## 46 1090.1163 0.000 isolated
## 47 1090.1163 0.000 isolated
## 48 1090.1163 0.000 isolated
## 49 2084.3023 0.000 isolated
## 50 2084.3023 0.000 isolated
## 51 2084.3023 0.000 isolated
## 52 2084.3023 0.000 isolated
## 53 2084.3023 0.000 isolated
## 54 2084.3023 0.000 isolated
## 55 2084.3023 0.000 isolated
## 56 2084.3023 0.000 isolated
## 57 2084.3023 0.000 isolated
## 58 2084.3023 0.000 isolated
## 59 2084.3023 0.000 isolated
## 60 2084.3023 0.000 isolated
## 61 2084.3023 0.000 isolated
## 62 2084.3023 0.000 isolated
## 63 2084.3023 0.000 isolated
## 64 2084.3023 0.000 isolated
## 65 2084.3023 0.000 isolated
## 66 2084.3023 0.000 isolated
## 67 2084.3023 0.000 isolated
## 68 2084.3023 0.000 isolated
## 69 2084.3023 0.000 isolated
## 70 2084.3023 0.000 isolated
## 71 2084.3023 0.000 isolated
## 72 2084.3023 0.000 isolated
## 73 2947.6744 0.000 isolated
## 74 2947.6744 0.000 isolated
## 75 2947.6744 0.000 isolated
## 76 2947.6744 0.000 isolated
## 77 2947.6744 0.000 isolated
## 78 2947.6744 0.000 isolated
## 79 2947.6744 0.000 isolated
## 80 2947.6744 0.000 isolated
## 81 2947.6744 0.000 isolated
## 82 2947.6744 0.000 isolated
## 83 2947.6744 0.000 isolated
## 84 2947.6744 0.000 isolated
## 85 2947.6744 0.000 isolated
## 86 2947.6744 0.000 isolated
## 87 2947.6744 0.000 isolated
## 88 2947.6744 0.000 isolated
## 89 2947.6744 0.000 isolated
## 90 2947.6744 0.000 isolated
## 91 2947.6744 0.000 isolated
## 92 2947.6744 0.000 isolated
## 93 2947.6744 0.000 isolated
## 94 2947.6744 0.000 isolated
## 95 2947.6744 0.000 isolated
## 96 2947.6744 0.000 isolated
## 97 1308.1395 0.000 isolated
## 98 1308.1395 0.000 isolated
## 99 1308.1395 0.000 isolated
## 100 1308.1395 0.000 isolated
## 101 1308.1395 0.000 isolated
## 102 1308.1395 0.000 isolated
## 103 1308.1395 0.000 isolated
## 104 1308.1395 0.000 isolated
## 105 1308.1395 0.000 isolated
## 106 1308.1395 0.000 isolated
## 107 1308.1395 0.000 isolated
## 108 1308.1395 0.000 isolated
## 109 1308.1395 0.000 isolated
## 110 1308.1395 0.000 isolated
## 111 1308.1395 0.000 isolated
## 112 1308.1395 0.000 isolated
## 113 1308.1395 0.000 isolated
## 114 1308.1395 0.000 isolated
## 115 1308.1395 0.000 isolated
## 116 1308.1395 0.000 isolated
## 117 1308.1395 0.000 isolated
## 118 1308.1395 0.000 isolated
## 119 1308.1395 0.000 isolated
## 120 1308.1395 0.000 isolated
## 121 767.4419 0.000 isolated
## 122 767.4419 0.000 isolated
## 123 767.4419 0.000 isolated
## 124 767.4419 0.000 isolated
## 125 767.4419 0.000 isolated
## 126 767.4419 0.000 isolated
## 127 767.4419 0.000 isolated
## 128 767.4419 0.000 isolated
## 129 767.4419 0.000 isolated
## 130 767.4419 0.000 isolated
## 131 767.4419 0.000 isolated
## 132 767.4419 0.000 isolated
## 133 767.4419 0.000 isolated
## 134 767.4419 0.000 isolated
## 135 767.4419 0.000 isolated
## 136 767.4419 0.000 isolated
## 137 767.4419 0.000 isolated
## 138 767.4419 0.000 isolated
## 139 767.4419 0.000 isolated
## 140 767.4419 0.000 isolated
## 141 767.4419 0.000 isolated
## 142 767.4419 0.000 isolated
## 143 767.4419 0.000 isolated
## 144 767.4419 0.000 isolated
## 145 1460.7558 0.000 isolated
## 146 1460.7558 0.000 isolated
## 147 1460.7558 0.000 isolated
## 148 1460.7558 0.000 isolated
## 149 1460.7558 0.000 isolated
## 150 1460.7558 0.000 isolated
## 151 1460.7558 0.000 isolated
## 152 1460.7558 0.000 isolated
## 153 1460.7558 0.000 isolated
## 154 1460.7558 0.000 isolated
## 155 1460.7558 0.000 isolated
## 156 1460.7558 0.000 isolated
## 157 1460.7558 0.000 isolated
## 158 1460.7558 0.000 isolated
## 159 1460.7558 0.000 isolated
## 160 1460.7558 0.000 isolated
## 161 1460.7558 0.000 isolated
## 162 1460.7558 0.000 isolated
## 163 1460.7558 0.000 isolated
## 164 1460.7558 0.000 isolated
## 165 1460.7558 0.000 isolated
## 166 1460.7558 0.000 isolated
## 167 1460.7558 0.000 isolated
## 168 1460.7558 0.000 isolated
## 169 187.5000 0.000 isolated
## 170 187.5000 0.000 isolated
## 171 187.5000 0.000 isolated
## 172 187.5000 0.000 isolated
## 173 187.5000 0.000 isolated
## 174 187.5000 0.000 isolated
## 175 187.5000 0.000 isolated
## 176 187.5000 0.000 isolated
## 177 187.5000 0.000 isolated
## 178 187.5000 0.000 isolated
## 179 187.5000 0.000 isolated
## 180 187.5000 0.000 isolated
## 181 187.5000 0.000 isolated
## 182 187.5000 0.000 isolated
## 183 187.5000 0.000 isolated
## 184 187.5000 0.000 isolated
## 185 187.5000 0.000 isolated
## 186 187.5000 0.000 isolated
## 187 187.5000 0.000 isolated
## 188 187.5000 0.000 isolated
## 189 187.5000 0.000 isolated
## 190 187.5000 0.000 isolated
## 191 187.5000 0.000 isolated
## 192 187.5000 0.000 isolated
## 193 981.9767 2243.895 isolated
## 194 981.9767 2243.895 isolated
## 195 981.9767 2243.895 isolated
## 196 981.9767 2243.895 isolated
## 197 981.9767 2243.895 isolated
## 198 981.9767 2243.895 isolated
## 199 981.9767 2243.895 isolated
## 200 981.9767 2243.895 isolated
## 201 981.9767 2243.895 isolated
## 202 981.9767 2243.895 isolated
## 203 981.9767 2243.895 isolated
## 204 981.9767 2243.895 isolated
## 205 981.9767 2243.895 isolated
## 206 981.9767 2243.895 isolated
## 207 981.9767 2243.895 isolated
## 208 981.9767 2243.895 isolated
## 209 981.9767 2243.895 isolated
## 210 981.9767 2243.895 isolated
## 211 981.9767 2243.895 isolated
## 212 981.9767 2243.895 isolated
## 213 981.9767 2243.895 isolated
## 214 981.9767 2243.895 isolated
## 215 981.9767 2243.895 isolated
## 216 981.9767 2243.895 isolated
## 217 0.0000 0.000 isolated
## 218 0.0000 0.000 isolated
## 219 0.0000 0.000 isolated
## 220 0.0000 0.000 isolated
## 221 0.0000 0.000 isolated
## 222 0.0000 0.000 isolated
## 223 0.0000 0.000 isolated
## 224 0.0000 0.000 isolated
## 225 0.0000 0.000 isolated
## 226 0.0000 0.000 isolated
## 227 0.0000 0.000 isolated
## 228 0.0000 0.000 isolated
## 229 0.0000 0.000 isolated
## 230 0.0000 0.000 isolated
## 231 0.0000 0.000 isolated
## 232 0.0000 0.000 isolated
## 233 0.0000 0.000 isolated
## 234 0.0000 0.000 isolated
## 235 0.0000 0.000 isolated
## 236 0.0000 0.000 isolated
## 237 0.0000 0.000 isolated
## 238 0.0000 0.000 isolated
## 239 0.0000 0.000 isolated
## 240 0.0000 0.000 isolated
## 241 1997.0930 0.000 isolated
## 242 1997.0930 0.000 isolated
## 243 1997.0930 0.000 isolated
## 244 1997.0930 0.000 isolated
## 245 1997.0930 0.000 isolated
## 246 1997.0930 0.000 isolated
## 247 1997.0930 0.000 isolated
## 248 1997.0930 0.000 isolated
## 249 1997.0930 0.000 isolated
## 250 1997.0930 0.000 isolated
## 251 1997.0930 0.000 isolated
## 252 1997.0930 0.000 isolated
## 253 1997.0930 0.000 isolated
## 254 1997.0930 0.000 isolated
## 255 1997.0930 0.000 isolated
## 256 1997.0930 0.000 isolated
## 257 1997.0930 0.000 isolated
## 258 1997.0930 0.000 isolated
## 259 1997.0930 0.000 isolated
## 260 1997.0930 0.000 isolated
## 261 1997.0930 0.000 isolated
## 262 1997.0930 0.000 isolated
## 263 1997.0930 0.000 isolated
## 264 1997.0930 0.000 isolated
## 265 3122.0930 0.000 isolated
## 266 3122.0930 0.000 isolated
## 267 3122.0930 0.000 isolated
## 268 3122.0930 0.000 isolated
## 269 3122.0930 0.000 isolated
## 270 3122.0930 0.000 isolated
## 271 3122.0930 0.000 isolated
## 272 3122.0930 0.000 isolated
## 273 3122.0930 0.000 isolated
## 274 3122.0930 0.000 isolated
## 275 3122.0930 0.000 isolated
## 276 3122.0930 0.000 isolated
## 277 3122.0930 0.000 isolated
## 278 3122.0930 0.000 isolated
## 279 3122.0930 0.000 isolated
## 280 3122.0930 0.000 isolated
## 281 3122.0930 0.000 isolated
## 282 3122.0930 0.000 isolated
## 283 3122.0930 0.000 isolated
## 284 3122.0930 0.000 isolated
## 285 3122.0930 0.000 isolated
## 286 3122.0930 0.000 isolated
## 287 3122.0930 0.000 isolated
## 288 3122.0930 0.000 isolated
## 289 218.0233 0.000 isolated
## 290 218.0233 0.000 isolated
## 291 218.0233 0.000 isolated
## 292 218.0233 0.000 isolated
## 293 218.0233 0.000 isolated
## 294 218.0233 0.000 isolated
## 295 218.0233 0.000 isolated
## 296 218.0233 0.000 isolated
## 297 218.0233 0.000 isolated
## 298 218.0233 0.000 isolated
## 299 218.0233 0.000 isolated
## 300 218.0233 0.000 isolated
## 301 218.0233 0.000 isolated
## 302 218.0233 0.000 isolated
## 303 218.0233 0.000 isolated
## 304 218.0233 0.000 isolated
## 305 218.0233 0.000 isolated
## 306 218.0233 0.000 isolated
## 307 218.0233 0.000 isolated
## 308 218.0233 0.000 isolated
## 309 218.0233 0.000 isolated
## 310 218.0233 0.000 isolated
## 311 218.0233 0.000 isolated
## 312 218.0233 0.000 isolated
## 313 3270.3488 0.000 isolated
## 314 3270.3488 0.000 isolated
## 315 3270.3488 0.000 isolated
## 316 3270.3488 0.000 isolated
## 317 3270.3488 0.000 isolated
## 318 3270.3488 0.000 isolated
## 319 3270.3488 0.000 isolated
## 320 3270.3488 0.000 isolated
## 321 3270.3488 0.000 isolated
## 322 3270.3488 0.000 isolated
## 323 3270.3488 0.000 isolated
## 324 3270.3488 0.000 isolated
## 325 3270.3488 0.000 isolated
## 326 3270.3488 0.000 isolated
## 327 3270.3488 0.000 isolated
## 328 3270.3488 0.000 isolated
## 329 3270.3488 0.000 isolated
## 330 3270.3488 0.000 isolated
## 331 3270.3488 0.000 isolated
## 332 3270.3488 0.000 isolated
## 333 3270.3488 0.000 isolated
## 334 3270.3488 0.000 isolated
## 335 3270.3488 0.000 isolated
## 336 3270.3488 0.000 isolated
## 337 218.0233 0.000 isolated
## 338 218.0233 0.000 isolated
## 339 218.0233 0.000 isolated
## 340 218.0233 0.000 isolated
## 341 218.0233 0.000 isolated
## 342 218.0233 0.000 isolated
## 343 218.0233 0.000 isolated
## 344 218.0233 0.000 isolated
## 345 218.0233 0.000 isolated
## 346 218.0233 0.000 isolated
## 347 218.0233 0.000 isolated
## 348 218.0233 0.000 isolated
## 349 218.0233 0.000 isolated
## 350 218.0233 0.000 isolated
## 351 218.0233 0.000 isolated
## 352 218.0233 0.000 isolated
## 353 218.0233 0.000 isolated
## 354 218.0233 0.000 isolated
## 355 218.0233 0.000 isolated
## 356 218.0233 0.000 isolated
## 357 218.0233 0.000 isolated
## 358 218.0233 0.000 isolated
## 359 218.0233 0.000 isolated
## 360 218.0233 0.000 isolated
## 361 928.7791 0.000 isolated
## 362 928.7791 0.000 isolated
## 363 928.7791 0.000 isolated
## 364 928.7791 0.000 isolated
## 365 928.7791 0.000 isolated
## 366 928.7791 0.000 isolated
## 367 928.7791 0.000 isolated
## 368 928.7791 0.000 isolated
## 369 928.7791 0.000 isolated
## 370 928.7791 0.000 isolated
## 371 928.7791 0.000 isolated
## 372 928.7791 0.000 isolated
## 373 928.7791 0.000 isolated
## 374 928.7791 0.000 isolated
## 375 928.7791 0.000 isolated
## 376 928.7791 0.000 isolated
## 377 928.7791 0.000 isolated
## 378 928.7791 0.000 isolated
## 379 928.7791 0.000 isolated
## 380 928.7791 0.000 isolated
## 381 928.7791 0.000 isolated
## 382 928.7791 0.000 isolated
## 383 928.7791 0.000 isolated
## 384 928.7791 0.000 isolated
## 385 981.9767 2243.895 isolated
## 386 981.9767 2243.895 isolated
## 387 981.9767 2243.895 isolated
## 388 981.9767 2243.895 isolated
## 389 981.9767 2243.895 isolated
## 390 981.9767 2243.895 isolated
## 391 981.9767 2243.895 isolated
## 392 981.9767 2243.895 isolated
## 393 981.9767 2243.895 isolated
## 394 981.9767 2243.895 isolated
## 395 981.9767 2243.895 isolated
## 396 981.9767 2243.895 isolated
## 397 981.9767 2243.895 isolated
## 398 981.9767 2243.895 isolated
## 399 981.9767 2243.895 isolated
## 400 981.9767 2243.895 isolated
## 401 981.9767 2243.895 isolated
## 402 981.9767 2243.895 isolated
## 403 981.9767 2243.895 isolated
## 404 981.9767 2243.895 isolated
## 405 981.9767 2243.895 isolated
## 406 981.9767 2243.895 isolated
## 407 981.9767 2243.895 isolated
## 408 981.9767 2243.895 isolated
## 409 2825.5814 0.000 isolated
## 410 2825.5814 0.000 isolated
## 411 2825.5814 0.000 isolated
## 412 2825.5814 0.000 isolated
## 413 2825.5814 0.000 isolated
## 414 2825.5814 0.000 isolated
## 415 2825.5814 0.000 isolated
## 416 2825.5814 0.000 isolated
## 417 2825.5814 0.000 isolated
## 418 2825.5814 0.000 isolated
## 419 2825.5814 0.000 isolated
## 420 2825.5814 0.000 isolated
## 421 2825.5814 0.000 isolated
## 422 2825.5814 0.000 isolated
## 423 2825.5814 0.000 isolated
## 424 2825.5814 0.000 isolated
## 425 2825.5814 0.000 isolated
## 426 2825.5814 0.000 isolated
## 427 2825.5814 0.000 isolated
## 428 2825.5814 0.000 isolated
## 429 2825.5814 0.000 isolated
## 430 2825.5814 0.000 isolated
## 431 2825.5814 0.000 isolated
## 432 2825.5814 0.000 isolated
## 433 3174.4186 0.000 isolated
## 434 3174.4186 0.000 isolated
## 435 3174.4186 0.000 isolated
## 436 3174.4186 0.000 isolated
## 437 3174.4186 0.000 isolated
## 438 3174.4186 0.000 isolated
## 439 3174.4186 0.000 isolated
## 440 3174.4186 0.000 isolated
## 441 3174.4186 0.000 isolated
## 442 3174.4186 0.000 isolated
## 443 3174.4186 0.000 isolated
## 444 3174.4186 0.000 isolated
## 445 3174.4186 0.000 isolated
## 446 3174.4186 0.000 isolated
## 447 3174.4186 0.000 isolated
## 448 3174.4186 0.000 isolated
## 449 3174.4186 0.000 isolated
## 450 3174.4186 0.000 isolated
## 451 3174.4186 0.000 isolated
## 452 3174.4186 0.000 isolated
## 453 3174.4186 0.000 isolated
## 454 3174.4186 0.000 isolated
## 455 3174.4186 0.000 isolated
## 456 3174.4186 0.000 isolated
## 457 6793.6047 0.000 isolated
## 458 6793.6047 0.000 isolated
## 459 6793.6047 0.000 isolated
## 460 6793.6047 0.000 isolated
## 461 6793.6047 0.000 isolated
## 462 6793.6047 0.000 isolated
## 463 6793.6047 0.000 isolated
## 464 6793.6047 0.000 isolated
## 465 6793.6047 0.000 isolated
## 466 6793.6047 0.000 isolated
## 467 6793.6047 0.000 isolated
## 468 6793.6047 0.000 isolated
## 469 6793.6047 0.000 isolated
## 470 6793.6047 0.000 isolated
## 471 6793.6047 0.000 isolated
## 472 6793.6047 0.000 isolated
## 473 6793.6047 0.000 isolated
## 474 6793.6047 0.000 isolated
## 475 6793.6047 0.000 isolated
## 476 6793.6047 0.000 isolated
## 477 6793.6047 0.000 isolated
## 478 6793.6047 0.000 isolated
## 479 6793.6047 0.000 isolated
## 480 6793.6047 0.000 isolated
## 481 2433.1395 0.000 isolated
## 482 2433.1395 0.000 isolated
## 483 2433.1395 0.000 isolated
## 484 2433.1395 0.000 isolated
## 485 2433.1395 0.000 isolated
## 486 2433.1395 0.000 isolated
## 487 2433.1395 0.000 isolated
## 488 2433.1395 0.000 isolated
## 489 2433.1395 0.000 isolated
## 490 2433.1395 0.000 isolated
## 491 2433.1395 0.000 isolated
## 492 2433.1395 0.000 isolated
## 493 2433.1395 0.000 isolated
## 494 2433.1395 0.000 isolated
## 495 2433.1395 0.000 isolated
## 496 2433.1395 0.000 isolated
## 497 2433.1395 0.000 isolated
## 498 2433.1395 0.000 isolated
## 499 2433.1395 0.000 isolated
## 500 2433.1395 0.000 isolated
## 501 2433.1395 0.000 isolated
## 502 2433.1395 0.000 isolated
## 503 2433.1395 0.000 isolated
## 504 2433.1395 0.000 isolated
## 505 5450.5814 0.000 isolated
## 506 5450.5814 0.000 isolated
## 507 5450.5814 0.000 isolated
## 508 5450.5814 0.000 isolated
## 509 5450.5814 0.000 isolated
## 510 5450.5814 0.000 isolated
## 511 5450.5814 0.000 isolated
## 512 5450.5814 0.000 isolated
## 513 5450.5814 0.000 isolated
## 514 5450.5814 0.000 isolated
## 515 5450.5814 0.000 isolated
## 516 5450.5814 0.000 isolated
## 517 5450.5814 0.000 isolated
## 518 5450.5814 0.000 isolated
## 519 5450.5814 0.000 isolated
## 520 5450.5814 0.000 isolated
## 521 5450.5814 0.000 isolated
## 522 5450.5814 0.000 isolated
## 523 5450.5814 0.000 isolated
## 524 5450.5814 0.000 isolated
## 525 5450.5814 0.000 isolated
## 526 5450.5814 0.000 isolated
## 527 5450.5814 0.000 isolated
## 528 5450.5814 0.000 isolated
## 529 806.6860 0.000 isolated
## 530 806.6860 0.000 isolated
## 531 806.6860 0.000 isolated
## 532 806.6860 0.000 isolated
## 533 806.6860 0.000 isolated
## 534 806.6860 0.000 isolated
## 535 806.6860 0.000 isolated
## 536 806.6860 0.000 isolated
## 537 806.6860 0.000 isolated
## 538 806.6860 0.000 isolated
## 539 806.6860 0.000 isolated
## 540 806.6860 0.000 isolated
## 541 806.6860 0.000 isolated
## 542 806.6860 0.000 isolated
## 543 806.6860 0.000 isolated
## 544 806.6860 0.000 isolated
## 545 806.6860 0.000 isolated
## 546 806.6860 0.000 isolated
## 547 806.6860 0.000 isolated
## 548 806.6860 0.000 isolated
## 549 806.6860 0.000 isolated
## 550 806.6860 0.000 isolated
## 551 806.6860 0.000 isolated
## 552 806.6860 0.000 isolated
## 553 1229.6512 0.000 isolated
## 554 1229.6512 0.000 isolated
## 555 1229.6512 0.000 isolated
## 556 1229.6512 0.000 isolated
## 557 1229.6512 0.000 isolated
## 558 1229.6512 0.000 isolated
## 559 1229.6512 0.000 isolated
## 560 1229.6512 0.000 isolated
## 561 1229.6512 0.000 isolated
## 562 1229.6512 0.000 isolated
## 563 1229.6512 0.000 isolated
## 564 1229.6512 0.000 isolated
## 565 1229.6512 0.000 isolated
## 566 1229.6512 0.000 isolated
## 567 1229.6512 0.000 isolated
## 568 1229.6512 0.000 isolated
## 569 1229.6512 0.000 isolated
## 570 1229.6512 0.000 isolated
## 571 1229.6512 0.000 isolated
## 572 1229.6512 0.000 isolated
## 573 1229.6512 0.000 isolated
## 574 1229.6512 0.000 isolated
## 575 1229.6512 0.000 isolated
## 576 1229.6512 0.000 isolated
## 577 981.9767 2243.895 isolated
## 578 981.9767 2243.895 isolated
## 579 981.9767 2243.895 isolated
## 580 981.9767 2243.895 isolated
## 581 981.9767 2243.895 isolated
## 582 981.9767 2243.895 isolated
## 583 981.9767 2243.895 isolated
## 584 981.9767 2243.895 isolated
## 585 981.9767 2243.895 isolated
## 586 981.9767 2243.895 isolated
## 587 981.9767 2243.895 isolated
## 588 981.9767 2243.895 isolated
## 589 981.9767 2243.895 isolated
## 590 981.9767 2243.895 isolated
## 591 981.9767 2243.895 isolated
## 592 981.9767 2243.895 isolated
## 593 981.9767 2243.895 isolated
## 594 981.9767 2243.895 isolated
## 595 981.9767 2243.895 isolated
## 596 981.9767 2243.895 isolated
## 597 981.9767 2243.895 isolated
## 598 981.9767 2243.895 isolated
## 599 981.9767 2243.895 isolated
## 600 981.9767 2243.895 isolated
## 601 2180.2326 0.000 isolated
## 602 2180.2326 0.000 isolated
## 603 2180.2326 0.000 isolated
## 604 2180.2326 0.000 isolated
## 605 2180.2326 0.000 isolated
## 606 2180.2326 0.000 isolated
## 607 2180.2326 0.000 isolated
## 608 2180.2326 0.000 isolated
## 609 2180.2326 0.000 isolated
## 610 2180.2326 0.000 isolated
## 611 2180.2326 0.000 isolated
## 612 2180.2326 0.000 isolated
## 613 2180.2326 0.000 isolated
## 614 2180.2326 0.000 isolated
## 615 2180.2326 0.000 isolated
## 616 2180.2326 0.000 isolated
## 617 2180.2326 0.000 isolated
## 618 2180.2326 0.000 isolated
## 619 2180.2326 0.000 isolated
## 620 2180.2326 0.000 isolated
## 621 2180.2326 0.000 isolated
## 622 2180.2326 0.000 isolated
## 623 2180.2326 0.000 isolated
## 624 2180.2326 0.000 isolated
## 625 2084.3023 0.000 isolated
## 626 2084.3023 0.000 isolated
## 627 2084.3023 0.000 isolated
## 628 2084.3023 0.000 isolated
## 629 2084.3023 0.000 isolated
## 630 2084.3023 0.000 isolated
## 631 2084.3023 0.000 isolated
## 632 2084.3023 0.000 isolated
## 633 2084.3023 0.000 isolated
## 634 2084.3023 0.000 isolated
## 635 2084.3023 0.000 isolated
## 636 2084.3023 0.000 isolated
## 637 2084.3023 0.000 isolated
## 638 2084.3023 0.000 isolated
## 639 2084.3023 0.000 isolated
## 640 2084.3023 0.000 isolated
## 641 2084.3023 0.000 isolated
## 642 2084.3023 0.000 isolated
## 643 2084.3023 0.000 isolated
## 644 2084.3023 0.000 isolated
## 645 2084.3023 0.000 isolated
## 646 2084.3023 0.000 isolated
## 647 2084.3023 0.000 isolated
## 648 2084.3023 0.000 isolated
## 649 1090.1163 0.000 isolated
## 650 1090.1163 0.000 isolated
## 651 1090.1163 0.000 isolated
## 652 1090.1163 0.000 isolated
## 653 1090.1163 0.000 isolated
## 654 1090.1163 0.000 isolated
## 655 1090.1163 0.000 isolated
## 656 1090.1163 0.000 isolated
## 657 1090.1163 0.000 isolated
## 658 1090.1163 0.000 isolated
## 659 1090.1163 0.000 isolated
## 660 1090.1163 0.000 isolated
## 661 1090.1163 0.000 isolated
## 662 1090.1163 0.000 isolated
## 663 1090.1163 0.000 isolated
## 664 1090.1163 0.000 isolated
## 665 1090.1163 0.000 isolated
## 666 1090.1163 0.000 isolated
## 667 1090.1163 0.000 isolated
## 668 1090.1163 0.000 isolated
## 669 1090.1163 0.000 isolated
## 670 1090.1163 0.000 isolated
## 671 1090.1163 0.000 isolated
## 672 1090.1163 0.000 isolated
## 673 218.0233 0.000 isolated
## 674 218.0233 0.000 isolated
## 675 218.0233 0.000 isolated
## 676 218.0233 0.000 isolated
## 677 218.0233 0.000 isolated
## 678 218.0233 0.000 isolated
## 679 218.0233 0.000 isolated
## 680 218.0233 0.000 isolated
## 681 218.0233 0.000 isolated
## 682 218.0233 0.000 isolated
## 683 218.0233 0.000 isolated
## 684 218.0233 0.000 isolated
## 685 218.0233 0.000 isolated
## 686 218.0233 0.000 isolated
## 687 218.0233 0.000 isolated
## 688 218.0233 0.000 isolated
## 689 218.0233 0.000 isolated
## 690 218.0233 0.000 isolated
## 691 218.0233 0.000 isolated
## 692 218.0233 0.000 isolated
## 693 218.0233 0.000 isolated
## 694 218.0233 0.000 isolated
## 695 218.0233 0.000 isolated
## 696 218.0233 0.000 isolated
## 697 0.0000 0.000 isolated
## 698 0.0000 0.000 isolated
## 699 0.0000 0.000 isolated
## 700 0.0000 0.000 isolated
## 701 0.0000 0.000 isolated
## 702 0.0000 0.000 isolated
## 703 0.0000 0.000 isolated
## 704 0.0000 0.000 isolated
## 705 0.0000 0.000 isolated
## 706 0.0000 0.000 isolated
## 707 0.0000 0.000 isolated
## 708 0.0000 0.000 isolated
## 709 0.0000 0.000 isolated
## 710 0.0000 0.000 isolated
## 711 0.0000 0.000 isolated
## 712 0.0000 0.000 isolated
## 713 0.0000 0.000 isolated
## 714 0.0000 0.000 isolated
## 715 0.0000 0.000 isolated
## 716 0.0000 0.000 isolated
## 717 0.0000 0.000 isolated
## 718 0.0000 0.000 isolated
## 719 0.0000 0.000 isolated
## 720 0.0000 0.000 isolated
## 721 109.0116 0.000 isolated
## 722 109.0116 0.000 isolated
## 723 109.0116 0.000 isolated
## 724 109.0116 0.000 isolated
## 725 109.0116 0.000 isolated
## 726 109.0116 0.000 isolated
## 727 109.0116 0.000 isolated
## 728 109.0116 0.000 isolated
## 729 109.0116 0.000 isolated
## 730 109.0116 0.000 isolated
## 731 109.0116 0.000 isolated
## 732 109.0116 0.000 isolated
## 733 109.0116 0.000 isolated
## 734 109.0116 0.000 isolated
## 735 109.0116 0.000 isolated
## 736 109.0116 0.000 isolated
## 737 109.0116 0.000 isolated
## 738 109.0116 0.000 isolated
## 739 109.0116 0.000 isolated
## 740 109.0116 0.000 isolated
## 741 109.0116 0.000 isolated
## 742 109.0116 0.000 isolated
## 743 109.0116 0.000 isolated
## 744 109.0116 0.000 isolated
## 745 0.0000 0.000 isolated
## 746 0.0000 0.000 isolated
## 747 0.0000 0.000 isolated
## 748 0.0000 0.000 isolated
## 749 0.0000 0.000 isolated
## 750 0.0000 0.000 isolated
## 751 0.0000 0.000 isolated
## 752 0.0000 0.000 isolated
## 753 0.0000 0.000 isolated
## 754 0.0000 0.000 isolated
## 755 0.0000 0.000 isolated
## 756 0.0000 0.000 isolated
## 757 0.0000 0.000 isolated
## 758 0.0000 0.000 isolated
## 759 0.0000 0.000 isolated
## 760 0.0000 0.000 isolated
## 761 0.0000 0.000 isolated
## 762 0.0000 0.000 isolated
## 763 0.0000 0.000 isolated
## 764 0.0000 0.000 isolated
## 765 0.0000 0.000 isolated
## 766 0.0000 0.000 isolated
## 767 0.0000 0.000 isolated
## 768 0.0000 0.000 isolated
## 769 981.9767 2243.895 isolated
## 770 981.9767 2243.895 isolated
## 771 981.9767 2243.895 isolated
## 772 981.9767 2243.895 isolated
## 773 981.9767 2243.895 isolated
## 774 981.9767 2243.895 isolated
## 775 981.9767 2243.895 isolated
## 776 981.9767 2243.895 isolated
## 777 981.9767 2243.895 isolated
## 778 981.9767 2243.895 isolated
## 779 981.9767 2243.895 isolated
## 780 981.9767 2243.895 isolated
## 781 981.9767 2243.895 isolated
## 782 981.9767 2243.895 isolated
## 783 981.9767 2243.895 isolated
## 784 981.9767 2243.895 isolated
## 785 981.9767 2243.895 isolated
## 786 981.9767 2243.895 isolated
## 787 981.9767 2243.895 isolated
## 788 981.9767 2243.895 isolated
## 789 981.9767 2243.895 isolated
## 790 981.9767 2243.895 isolated
## 791 981.9767 2243.895 isolated
## 792 981.9767 2243.895 isolated
## 793 1465.1163 0.000 isolated
## 794 1465.1163 0.000 isolated
## 795 1465.1163 0.000 isolated
## 796 1465.1163 0.000 isolated
## 797 1465.1163 0.000 isolated
## 798 1465.1163 0.000 isolated
## 799 1465.1163 0.000 isolated
## 800 1465.1163 0.000 isolated
## 801 1465.1163 0.000 isolated
## 802 1465.1163 0.000 isolated
## 803 1465.1163 0.000 isolated
## 804 1465.1163 0.000 isolated
## 805 1465.1163 0.000 isolated
## 806 1465.1163 0.000 isolated
## 807 1465.1163 0.000 isolated
## 808 1465.1163 0.000 isolated
## 809 1465.1163 0.000 isolated
## 810 1465.1163 0.000 isolated
## 811 1465.1163 0.000 isolated
## 812 1465.1163 0.000 isolated
## 813 1465.1163 0.000 isolated
## 814 1465.1163 0.000 isolated
## 815 1465.1163 0.000 isolated
## 816 1465.1163 0.000 isolated
## 817 2389.5349 0.000 isolated
## 818 2389.5349 0.000 isolated
## 819 2389.5349 0.000 isolated
## 820 2389.5349 0.000 isolated
## 821 2389.5349 0.000 isolated
## 822 2389.5349 0.000 isolated
## 823 2389.5349 0.000 isolated
## 824 2389.5349 0.000 isolated
## 825 2389.5349 0.000 isolated
## 826 2389.5349 0.000 isolated
## 827 2389.5349 0.000 isolated
## 828 2389.5349 0.000 isolated
## 829 2389.5349 0.000 isolated
## 830 2389.5349 0.000 isolated
## 831 2389.5349 0.000 isolated
## 832 2389.5349 0.000 isolated
## 833 2389.5349 0.000 isolated
## 834 2389.5349 0.000 isolated
## 835 2389.5349 0.000 isolated
## 836 2389.5349 0.000 isolated
## 837 2389.5349 0.000 isolated
## 838 2389.5349 0.000 isolated
## 839 2389.5349 0.000 isolated
## 840 2389.5349 0.000 isolated
## 841 2136.6279 0.000 isolated
## 842 2136.6279 0.000 isolated
## 843 2136.6279 0.000 isolated
## 844 2136.6279 0.000 isolated
## 845 2136.6279 0.000 isolated
## 846 2136.6279 0.000 isolated
## 847 2136.6279 0.000 isolated
## 848 2136.6279 0.000 isolated
## 849 2136.6279 0.000 isolated
## 850 2136.6279 0.000 isolated
## 851 2136.6279 0.000 isolated
## 852 2136.6279 0.000 isolated
## 853 2136.6279 0.000 isolated
## 854 2136.6279 0.000 isolated
## 855 2136.6279 0.000 isolated
## 856 2136.6279 0.000 isolated
## 857 2136.6279 0.000 isolated
## 858 2136.6279 0.000 isolated
## 859 2136.6279 0.000 isolated
## 860 2136.6279 0.000 isolated
## 861 2136.6279 0.000 isolated
## 862 2136.6279 0.000 isolated
## 863 2136.6279 0.000 isolated
## 864 2136.6279 0.000 isolated
## 865 1308.1395 0.000 isolated
## 866 1308.1395 0.000 isolated
## 867 1308.1395 0.000 isolated
## 868 1308.1395 0.000 isolated
## 869 1308.1395 0.000 isolated
## 870 1308.1395 0.000 isolated
## 871 1308.1395 0.000 isolated
## 872 1308.1395 0.000 isolated
## 873 1308.1395 0.000 isolated
## 874 1308.1395 0.000 isolated
## 875 1308.1395 0.000 isolated
## 876 1308.1395 0.000 isolated
## 877 1308.1395 0.000 isolated
## 878 1308.1395 0.000 isolated
## 879 1308.1395 0.000 isolated
## 880 1308.1395 0.000 isolated
## 881 1308.1395 0.000 isolated
## 882 1308.1395 0.000 isolated
## 883 1308.1395 0.000 isolated
## 884 1308.1395 0.000 isolated
## 885 1308.1395 0.000 isolated
## 886 1308.1395 0.000 isolated
## 887 1308.1395 0.000 isolated
## 888 1308.1395 0.000 isolated
## 889 1090.1163 0.000 isolated
## 890 1090.1163 0.000 isolated
## 891 1090.1163 0.000 isolated
## 892 1090.1163 0.000 isolated
## 893 1090.1163 0.000 isolated
## 894 1090.1163 0.000 isolated
## 895 1090.1163 0.000 isolated
## 896 1090.1163 0.000 isolated
## 897 1090.1163 0.000 isolated
## 898 1090.1163 0.000 isolated
## 899 1090.1163 0.000 isolated
## 900 1090.1163 0.000 isolated
## 901 1090.1163 0.000 isolated
## 902 1090.1163 0.000 isolated
## 903 1090.1163 0.000 isolated
## 904 1090.1163 0.000 isolated
## 905 1090.1163 0.000 isolated
## 906 1090.1163 0.000 isolated
## 907 1090.1163 0.000 isolated
## 908 1090.1163 0.000 isolated
## 909 1090.1163 0.000 isolated
## 910 1090.1163 0.000 isolated
## 911 1090.1163 0.000 isolated
## 912 1090.1163 0.000 isolated
## 913 3235.4651 0.000 isolated
## 914 3235.4651 0.000 isolated
## 915 3235.4651 0.000 isolated
## 916 3235.4651 0.000 isolated
## 917 3235.4651 0.000 isolated
## 918 3235.4651 0.000 isolated
## 919 3235.4651 0.000 isolated
## 920 3235.4651 0.000 isolated
## 921 3235.4651 0.000 isolated
## 922 3235.4651 0.000 isolated
## 923 3235.4651 0.000 isolated
## 924 3235.4651 0.000 isolated
## 925 3235.4651 0.000 isolated
## 926 3235.4651 0.000 isolated
## 927 3235.4651 0.000 isolated
## 928 3235.4651 0.000 isolated
## 929 3235.4651 0.000 isolated
## 930 3235.4651 0.000 isolated
## 931 3235.4651 0.000 isolated
## 932 3235.4651 0.000 isolated
## 933 3235.4651 0.000 isolated
## 934 3235.4651 0.000 isolated
## 935 3235.4651 0.000 isolated
## 936 3235.4651 0.000 isolated
## 937 1077.0349 0.000 isolated
## 938 1077.0349 0.000 isolated
## 939 1077.0349 0.000 isolated
## 940 1077.0349 0.000 isolated
## 941 1077.0349 0.000 isolated
## 942 1077.0349 0.000 isolated
## 943 1077.0349 0.000 isolated
## 944 1077.0349 0.000 isolated
## 945 1077.0349 0.000 isolated
## 946 1077.0349 0.000 isolated
## 947 1077.0349 0.000 isolated
## 948 1077.0349 0.000 isolated
## 949 1077.0349 0.000 isolated
## 950 1077.0349 0.000 isolated
## 951 1077.0349 0.000 isolated
## 952 1077.0349 0.000 isolated
## 953 1077.0349 0.000 isolated
## 954 1077.0349 0.000 isolated
## 955 1077.0349 0.000 isolated
## 956 1077.0349 0.000 isolated
## 957 1077.0349 0.000 isolated
## 958 1077.0349 0.000 isolated
## 959 1077.0349 0.000 isolated
## 960 1077.0349 0.000 isolated
## 961 981.9767 2243.895 isolated
## 962 981.9767 2243.895 isolated
## 963 981.9767 2243.895 isolated
## 964 981.9767 2243.895 isolated
## 965 981.9767 2243.895 isolated
## 966 981.9767 2243.895 isolated
## 967 981.9767 2243.895 isolated
## 968 981.9767 2243.895 isolated
## 969 981.9767 2243.895 isolated
## 970 981.9767 2243.895 isolated
## 971 981.9767 2243.895 isolated
## 972 981.9767 2243.895 isolated
## 973 981.9767 2243.895 isolated
## 974 981.9767 2243.895 isolated
## 975 981.9767 2243.895 isolated
## 976 981.9767 2243.895 isolated
## 977 981.9767 2243.895 isolated
## 978 981.9767 2243.895 isolated
## 979 981.9767 2243.895 isolated
## 980 981.9767 2243.895 isolated
## 981 981.9767 2243.895 isolated
## 982 981.9767 2243.895 isolated
## 983 981.9767 2243.895 isolated
## 984 981.9767 2243.895 isolated
## 985 1247.0930 0.000 isolated
## 986 1247.0930 0.000 isolated
## 987 1247.0930 0.000 isolated
## 988 1247.0930 0.000 isolated
## 989 1247.0930 0.000 isolated
## 990 1247.0930 0.000 isolated
## 991 1247.0930 0.000 isolated
## 992 1247.0930 0.000 isolated
## 993 1247.0930 0.000 isolated
## 994 1247.0930 0.000 isolated
## 995 1247.0930 0.000 isolated
## 996 1247.0930 0.000 isolated
## 997 1247.0930 0.000 isolated
## 998 1247.0930 0.000 isolated
## 999 1247.0930 0.000 isolated
## 1000 1247.0930 0.000 isolated
## 1001 1247.0930 0.000 isolated
## 1002 1247.0930 0.000 isolated
## 1003 1247.0930 0.000 isolated
## 1004 1247.0930 0.000 isolated
## 1005 1247.0930 0.000 isolated
## 1006 1247.0930 0.000 isolated
## 1007 1247.0930 0.000 isolated
## 1008 1247.0930 0.000 isolated
## 1009 1308.1395 0.000 isolated
## 1010 1308.1395 0.000 isolated
## 1011 1308.1395 0.000 isolated
## 1012 1308.1395 0.000 isolated
## 1013 1308.1395 0.000 isolated
## 1014 1308.1395 0.000 isolated
## 1015 1308.1395 0.000 isolated
## 1016 1308.1395 0.000 isolated
## 1017 1308.1395 0.000 isolated
## 1018 1308.1395 0.000 isolated
## 1019 1308.1395 0.000 isolated
## 1020 1308.1395 0.000 isolated
## 1021 1308.1395 0.000 isolated
## 1022 1308.1395 0.000 isolated
## 1023 1308.1395 0.000 isolated
## 1024 1308.1395 0.000 isolated
## 1025 1308.1395 0.000 isolated
## 1026 1308.1395 0.000 isolated
## 1027 1308.1395 0.000 isolated
## 1028 1308.1395 0.000 isolated
## 1029 1308.1395 0.000 isolated
## 1030 1308.1395 0.000 isolated
## 1031 1308.1395 0.000 isolated
## 1032 1308.1395 0.000 isolated
## 1033 2947.6744 0.000 isolated
## 1034 2947.6744 0.000 isolated
## 1035 2947.6744 0.000 isolated
## 1036 2947.6744 0.000 isolated
## 1037 2947.6744 0.000 isolated
## 1038 2947.6744 0.000 isolated
## 1039 2947.6744 0.000 isolated
## 1040 2947.6744 0.000 isolated
## 1041 2947.6744 0.000 isolated
## 1042 2947.6744 0.000 isolated
## 1043 2947.6744 0.000 isolated
## 1044 2947.6744 0.000 isolated
## 1045 2947.6744 0.000 isolated
## 1046 2947.6744 0.000 isolated
## 1047 2947.6744 0.000 isolated
## 1048 2947.6744 0.000 isolated
## 1049 2947.6744 0.000 isolated
## 1050 2947.6744 0.000 isolated
## 1051 2947.6744 0.000 isolated
## 1052 2947.6744 0.000 isolated
## 1053 2947.6744 0.000 isolated
## 1054 2947.6744 0.000 isolated
## 1055 2947.6744 0.000 isolated
## 1056 2947.6744 0.000 isolated
## 1057 1090.1163 0.000 isolated
## 1058 1090.1163 0.000 isolated
## 1059 1090.1163 0.000 isolated
## 1060 1090.1163 0.000 isolated
## 1061 1090.1163 0.000 isolated
## 1062 1090.1163 0.000 isolated
## 1063 1090.1163 0.000 isolated
## 1064 1090.1163 0.000 isolated
## 1065 1090.1163 0.000 isolated
## 1066 1090.1163 0.000 isolated
## 1067 1090.1163 0.000 isolated
## 1068 1090.1163 0.000 isolated
## 1069 1090.1163 0.000 isolated
## 1070 1090.1163 0.000 isolated
## 1071 1090.1163 0.000 isolated
## 1072 1090.1163 0.000 isolated
## 1073 1090.1163 0.000 isolated
## 1074 1090.1163 0.000 isolated
## 1075 1090.1163 0.000 isolated
## 1076 1090.1163 0.000 isolated
## 1077 1090.1163 0.000 isolated
## 1078 1090.1163 0.000 isolated
## 1079 1090.1163 0.000 isolated
## 1080 1090.1163 0.000 isolated
## 1081 767.4419 0.000 isolated
## 1082 767.4419 0.000 isolated
## 1083 767.4419 0.000 isolated
## 1084 767.4419 0.000 isolated
## 1085 767.4419 0.000 isolated
## 1086 767.4419 0.000 isolated
## 1087 767.4419 0.000 isolated
## 1088 767.4419 0.000 isolated
## 1089 767.4419 0.000 isolated
## 1090 767.4419 0.000 isolated
## 1091 767.4419 0.000 isolated
## 1092 767.4419 0.000 isolated
## 1093 767.4419 0.000 isolated
## 1094 767.4419 0.000 isolated
## 1095 767.4419 0.000 isolated
## 1096 767.4419 0.000 isolated
## 1097 767.4419 0.000 isolated
## 1098 767.4419 0.000 isolated
## 1099 767.4419 0.000 isolated
## 1100 767.4419 0.000 isolated
## 1101 767.4419 0.000 isolated
## 1102 767.4419 0.000 isolated
## 1103 767.4419 0.000 isolated
## 1104 767.4419 0.000 isolated
## 1105 1351.7442 0.000 isolated
## 1106 1351.7442 0.000 isolated
## 1107 1351.7442 0.000 isolated
## 1108 1351.7442 0.000 isolated
## 1109 1351.7442 0.000 isolated
## 1110 1351.7442 0.000 isolated
## 1111 1351.7442 0.000 isolated
## 1112 1351.7442 0.000 isolated
## 1113 1351.7442 0.000 isolated
## 1114 1351.7442 0.000 isolated
## 1115 1351.7442 0.000 isolated
## 1116 1351.7442 0.000 isolated
## 1117 1351.7442 0.000 isolated
## 1118 1351.7442 0.000 isolated
## 1119 1351.7442 0.000 isolated
## 1120 1351.7442 0.000 isolated
## 1121 1351.7442 0.000 isolated
## 1122 1351.7442 0.000 isolated
## 1123 1351.7442 0.000 isolated
## 1124 1351.7442 0.000 isolated
## 1125 1351.7442 0.000 isolated
## 1126 1351.7442 0.000 isolated
## 1127 1351.7442 0.000 isolated
## 1128 1351.7442 0.000 isolated
## 1129 187.5000 0.000 isolated
## 1130 187.5000 0.000 isolated
## 1131 187.5000 0.000 isolated
## 1132 187.5000 0.000 isolated
## 1133 187.5000 0.000 isolated
## 1134 187.5000 0.000 isolated
## 1135 187.5000 0.000 isolated
## 1136 187.5000 0.000 isolated
## 1137 187.5000 0.000 isolated
## 1138 187.5000 0.000 isolated
## 1139 187.5000 0.000 isolated
## 1140 187.5000 0.000 isolated
## 1141 187.5000 0.000 isolated
## 1142 187.5000 0.000 isolated
## 1143 187.5000 0.000 isolated
## 1144 187.5000 0.000 isolated
## 1145 187.5000 0.000 isolated
## 1146 187.5000 0.000 isolated
## 1147 187.5000 0.000 isolated
## 1148 187.5000 0.000 isolated
## 1149 187.5000 0.000 isolated
## 1150 187.5000 0.000 isolated
## 1151 187.5000 0.000 isolated
## 1152 187.5000 0.000 isolated
## 1153 981.9767 2243.895 isolated
## 1154 981.9767 2243.895 isolated
## 1155 981.9767 2243.895 isolated
## 1156 981.9767 2243.895 isolated
## 1157 981.9767 2243.895 isolated
## 1158 981.9767 2243.895 isolated
## 1159 981.9767 2243.895 isolated
## 1160 981.9767 2243.895 isolated
## 1161 981.9767 2243.895 isolated
## 1162 981.9767 2243.895 isolated
## 1163 981.9767 2243.895 isolated
## 1164 981.9767 2243.895 isolated
## 1165 981.9767 2243.895 isolated
## 1166 981.9767 2243.895 isolated
## 1167 981.9767 2243.895 isolated
## 1168 981.9767 2243.895 isolated
## 1169 981.9767 2243.895 isolated
## 1170 981.9767 2243.895 isolated
## 1171 981.9767 2243.895 isolated
## 1172 981.9767 2243.895 isolated
## 1173 981.9767 2243.895 isolated
## 1174 981.9767 2243.895 isolated
## 1175 981.9767 2243.895 isolated
## 1176 981.9767 2243.895 isolated
## 1177 156.9767 0.000 isolated
## 1178 156.9767 0.000 isolated
## 1179 156.9767 0.000 isolated
## 1180 156.9767 0.000 isolated
## 1181 156.9767 0.000 isolated
## 1182 156.9767 0.000 isolated
## 1183 156.9767 0.000 isolated
## 1184 156.9767 0.000 isolated
## 1185 156.9767 0.000 isolated
## 1186 156.9767 0.000 isolated
## 1187 156.9767 0.000 isolated
## 1188 156.9767 0.000 isolated
## 1189 156.9767 0.000 isolated
## 1190 156.9767 0.000 isolated
## 1191 156.9767 0.000 isolated
## 1192 156.9767 0.000 isolated
## 1193 156.9767 0.000 isolated
## 1194 156.9767 0.000 isolated
## 1195 156.9767 0.000 isolated
## 1196 156.9767 0.000 isolated
## 1197 156.9767 0.000 isolated
## 1198 156.9767 0.000 isolated
## 1199 156.9767 0.000 isolated
## 1200 156.9767 0.000 isolated
## 1201 1220.9302 0.000 isolated
## 1202 1220.9302 0.000 isolated
## 1203 1220.9302 0.000 isolated
## 1204 1220.9302 0.000 isolated
## 1205 1220.9302 0.000 isolated
## 1206 1220.9302 0.000 isolated
## 1207 1220.9302 0.000 isolated
## 1208 1220.9302 0.000 isolated
## 1209 1220.9302 0.000 isolated
## 1210 1220.9302 0.000 isolated
## 1211 1220.9302 0.000 isolated
## 1212 1220.9302 0.000 isolated
## 1213 1220.9302 0.000 isolated
## 1214 1220.9302 0.000 isolated
## 1215 1220.9302 0.000 isolated
## 1216 1220.9302 0.000 isolated
## 1217 1220.9302 0.000 isolated
## 1218 1220.9302 0.000 isolated
## 1219 1220.9302 0.000 isolated
## 1220 1220.9302 0.000 isolated
## 1221 1220.9302 0.000 isolated
## 1222 1220.9302 0.000 isolated
## 1223 1220.9302 0.000 isolated
## 1224 1220.9302 0.000 isolated
## 1225 3122.0930 0.000 isolated
## 1226 3122.0930 0.000 isolated
## 1227 3122.0930 0.000 isolated
## 1228 3122.0930 0.000 isolated
## 1229 3122.0930 0.000 isolated
## 1230 3122.0930 0.000 isolated
## 1231 3122.0930 0.000 isolated
## 1232 3122.0930 0.000 isolated
## 1233 3122.0930 0.000 isolated
## 1234 3122.0930 0.000 isolated
## 1235 3122.0930 0.000 isolated
## 1236 3122.0930 0.000 isolated
## 1237 3122.0930 0.000 isolated
## 1238 3122.0930 0.000 isolated
## 1239 3122.0930 0.000 isolated
## 1240 3122.0930 0.000 isolated
## 1241 3122.0930 0.000 isolated
## 1242 3122.0930 0.000 isolated
## 1243 3122.0930 0.000 isolated
## 1244 3122.0930 0.000 isolated
## 1245 3122.0930 0.000 isolated
## 1246 3122.0930 0.000 isolated
## 1247 3122.0930 0.000 isolated
## 1248 3122.0930 0.000 isolated
## 1249 0.0000 0.000 isolated
## 1250 0.0000 0.000 isolated
## 1251 0.0000 0.000 isolated
## 1252 0.0000 0.000 isolated
## 1253 0.0000 0.000 isolated
## 1254 0.0000 0.000 isolated
## 1255 0.0000 0.000 isolated
## 1256 0.0000 0.000 isolated
## 1257 0.0000 0.000 isolated
## 1258 0.0000 0.000 isolated
## 1259 0.0000 0.000 isolated
## 1260 0.0000 0.000 isolated
## 1261 0.0000 0.000 isolated
## 1262 0.0000 0.000 isolated
## 1263 0.0000 0.000 isolated
## 1264 0.0000 0.000 isolated
## 1265 0.0000 0.000 isolated
## 1266 0.0000 0.000 isolated
## 1267 0.0000 0.000 isolated
## 1268 0.0000 0.000 isolated
## 1269 0.0000 0.000 isolated
## 1270 0.0000 0.000 isolated
## 1271 0.0000 0.000 isolated
## 1272 0.0000 0.000 isolated
## 1273 3270.3488 0.000 isolated
## 1274 3270.3488 0.000 isolated
## 1275 3270.3488 0.000 isolated
## 1276 3270.3488 0.000 isolated
## 1277 3270.3488 0.000 isolated
## 1278 3270.3488 0.000 isolated
## 1279 3270.3488 0.000 isolated
## 1280 3270.3488 0.000 isolated
## 1281 3270.3488 0.000 isolated
## 1282 3270.3488 0.000 isolated
## 1283 3270.3488 0.000 isolated
## 1284 3270.3488 0.000 isolated
## 1285 3270.3488 0.000 isolated
## 1286 3270.3488 0.000 isolated
## 1287 3270.3488 0.000 isolated
## 1288 3270.3488 0.000 isolated
## 1289 3270.3488 0.000 isolated
## 1290 3270.3488 0.000 isolated
## 1291 3270.3488 0.000 isolated
## 1292 3270.3488 0.000 isolated
## 1293 3270.3488 0.000 isolated
## 1294 3270.3488 0.000 isolated
## 1295 3270.3488 0.000 isolated
## 1296 3270.3488 0.000 isolated
## 1297 109.0116 0.000 isolated
## 1298 109.0116 0.000 isolated
## 1299 109.0116 0.000 isolated
## 1300 109.0116 0.000 isolated
## 1301 109.0116 0.000 isolated
## 1302 109.0116 0.000 isolated
## 1303 109.0116 0.000 isolated
## 1304 109.0116 0.000 isolated
## 1305 109.0116 0.000 isolated
## 1306 109.0116 0.000 isolated
## 1307 109.0116 0.000 isolated
## 1308 109.0116 0.000 isolated
## 1309 109.0116 0.000 isolated
## 1310 109.0116 0.000 isolated
## 1311 109.0116 0.000 isolated
## 1312 109.0116 0.000 isolated
## 1313 109.0116 0.000 isolated
## 1314 109.0116 0.000 isolated
## 1315 109.0116 0.000 isolated
## 1316 109.0116 0.000 isolated
## 1317 109.0116 0.000 isolated
## 1318 109.0116 0.000 isolated
## 1319 109.0116 0.000 isolated
## 1320 109.0116 0.000 isolated
## 1321 928.7791 0.000 isolated
## 1322 928.7791 0.000 isolated
## 1323 928.7791 0.000 isolated
## 1324 928.7791 0.000 isolated
## 1325 928.7791 0.000 isolated
## 1326 928.7791 0.000 isolated
## 1327 928.7791 0.000 isolated
## 1328 928.7791 0.000 isolated
## 1329 928.7791 0.000 isolated
## 1330 928.7791 0.000 isolated
## 1331 928.7791 0.000 isolated
## 1332 928.7791 0.000 isolated
## 1333 928.7791 0.000 isolated
## 1334 928.7791 0.000 isolated
## 1335 928.7791 0.000 isolated
## 1336 928.7791 0.000 isolated
## 1337 928.7791 0.000 isolated
## 1338 928.7791 0.000 isolated
## 1339 928.7791 0.000 isolated
## 1340 928.7791 0.000 isolated
## 1341 928.7791 0.000 isolated
## 1342 928.7791 0.000 isolated
## 1343 928.7791 0.000 isolated
## 1344 928.7791 0.000 isolated
## 1345 981.9767 2243.895 isolated
## 1346 981.9767 2243.895 isolated
## 1347 981.9767 2243.895 isolated
## 1348 981.9767 2243.895 isolated
## 1349 981.9767 2243.895 isolated
## 1350 981.9767 2243.895 isolated
## 1351 981.9767 2243.895 isolated
## 1352 981.9767 2243.895 isolated
## 1353 981.9767 2243.895 isolated
## 1354 981.9767 2243.895 isolated
## 1355 981.9767 2243.895 isolated
## 1356 981.9767 2243.895 isolated
## 1357 981.9767 2243.895 isolated
## 1358 981.9767 2243.895 isolated
## 1359 981.9767 2243.895 isolated
## 1360 981.9767 2243.895 isolated
## 1361 981.9767 2243.895 isolated
## 1362 981.9767 2243.895 isolated
## 1363 981.9767 2243.895 isolated
## 1364 981.9767 2243.895 isolated
## 1365 981.9767 2243.895 isolated
## 1366 981.9767 2243.895 isolated
## 1367 981.9767 2243.895 isolated
## 1368 981.9767 2243.895 isolated
## 1369 2982.5581 0.000 isolated
## 1370 2982.5581 0.000 isolated
## 1371 2982.5581 0.000 isolated
## 1372 2982.5581 0.000 isolated
## 1373 2982.5581 0.000 isolated
## 1374 2982.5581 0.000 isolated
## 1375 2982.5581 0.000 isolated
## 1376 2982.5581 0.000 isolated
## 1377 2982.5581 0.000 isolated
## 1378 2982.5581 0.000 isolated
## 1379 2982.5581 0.000 isolated
## 1380 2982.5581 0.000 isolated
## 1381 2982.5581 0.000 isolated
## 1382 2982.5581 0.000 isolated
## 1383 2982.5581 0.000 isolated
## 1384 2982.5581 0.000 isolated
## 1385 2982.5581 0.000 isolated
## 1386 2982.5581 0.000 isolated
## 1387 2982.5581 0.000 isolated
## 1388 2982.5581 0.000 isolated
## 1389 2982.5581 0.000 isolated
## 1390 2982.5581 0.000 isolated
## 1391 2982.5581 0.000 isolated
## 1392 2982.5581 0.000 isolated
## 1393 2398.2558 0.000 isolated
## 1394 2398.2558 0.000 isolated
## 1395 2398.2558 0.000 isolated
## 1396 2398.2558 0.000 isolated
## 1397 2398.2558 0.000 isolated
## 1398 2398.2558 0.000 isolated
## 1399 2398.2558 0.000 isolated
## 1400 2398.2558 0.000 isolated
## 1401 2398.2558 0.000 isolated
## 1402 2398.2558 0.000 isolated
## 1403 2398.2558 0.000 isolated
## 1404 2398.2558 0.000 isolated
## 1405 2398.2558 0.000 isolated
## 1406 2398.2558 0.000 isolated
## 1407 2398.2558 0.000 isolated
## 1408 2398.2558 0.000 isolated
## 1409 2398.2558 0.000 isolated
## 1410 2398.2558 0.000 isolated
## 1411 2398.2558 0.000 isolated
## 1412 2398.2558 0.000 isolated
## 1413 2398.2558 0.000 isolated
## 1414 2398.2558 0.000 isolated
## 1415 2398.2558 0.000 isolated
## 1416 2398.2558 0.000 isolated
## 1417 6793.6047 0.000 isolated
## 1418 6793.6047 0.000 isolated
## 1419 6793.6047 0.000 isolated
## 1420 6793.6047 0.000 isolated
## 1421 6793.6047 0.000 isolated
## 1422 6793.6047 0.000 isolated
## 1423 6793.6047 0.000 isolated
## 1424 6793.6047 0.000 isolated
## 1425 6793.6047 0.000 isolated
## 1426 6793.6047 0.000 isolated
## 1427 6793.6047 0.000 isolated
## 1428 6793.6047 0.000 isolated
## 1429 6793.6047 0.000 isolated
## 1430 6793.6047 0.000 isolated
## 1431 6793.6047 0.000 isolated
## 1432 6793.6047 0.000 isolated
## 1433 6793.6047 0.000 isolated
## 1434 6793.6047 0.000 isolated
## 1435 6793.6047 0.000 isolated
## 1436 6793.6047 0.000 isolated
## 1437 6793.6047 0.000 isolated
## 1438 6793.6047 0.000 isolated
## 1439 6793.6047 0.000 isolated
## 1440 6793.6047 0.000 isolated
## 1441 2215.1163 0.000 isolated
## 1442 2215.1163 0.000 isolated
## 1443 2215.1163 0.000 isolated
## 1444 2215.1163 0.000 isolated
## 1445 2215.1163 0.000 isolated
## 1446 2215.1163 0.000 isolated
## 1447 2215.1163 0.000 isolated
## 1448 2215.1163 0.000 isolated
## 1449 2215.1163 0.000 isolated
## 1450 2215.1163 0.000 isolated
## 1451 2215.1163 0.000 isolated
## 1452 2215.1163 0.000 isolated
## 1453 2215.1163 0.000 isolated
## 1454 2215.1163 0.000 isolated
## 1455 2215.1163 0.000 isolated
## 1456 2215.1163 0.000 isolated
## 1457 2215.1163 0.000 isolated
## 1458 2215.1163 0.000 isolated
## 1459 2215.1163 0.000 isolated
## 1460 2215.1163 0.000 isolated
## 1461 2215.1163 0.000 isolated
## 1462 2215.1163 0.000 isolated
## 1463 2215.1163 0.000 isolated
## 1464 2215.1163 0.000 isolated
## 1465 5450.5814 0.000 isolated
## 1466 5450.5814 0.000 isolated
## 1467 5450.5814 0.000 isolated
## 1468 5450.5814 0.000 isolated
## 1469 5450.5814 0.000 isolated
## 1470 5450.5814 0.000 isolated
## 1471 5450.5814 0.000 isolated
## 1472 5450.5814 0.000 isolated
## 1473 5450.5814 0.000 isolated
## 1474 5450.5814 0.000 isolated
## 1475 5450.5814 0.000 isolated
## 1476 5450.5814 0.000 isolated
## 1477 5450.5814 0.000 isolated
## 1478 5450.5814 0.000 isolated
## 1479 5450.5814 0.000 isolated
## 1480 5450.5814 0.000 isolated
## 1481 5450.5814 0.000 isolated
## 1482 5450.5814 0.000 isolated
## 1483 5450.5814 0.000 isolated
## 1484 5450.5814 0.000 isolated
## 1485 5450.5814 0.000 isolated
## 1486 5450.5814 0.000 isolated
## 1487 5450.5814 0.000 isolated
## 1488 5450.5814 0.000 isolated
## 1489 697.6744 0.000 isolated
## 1490 697.6744 0.000 isolated
## 1491 697.6744 0.000 isolated
## 1492 697.6744 0.000 isolated
## 1493 697.6744 0.000 isolated
## 1494 697.6744 0.000 isolated
## 1495 697.6744 0.000 isolated
## 1496 697.6744 0.000 isolated
## 1497 697.6744 0.000 isolated
## 1498 697.6744 0.000 isolated
## 1499 697.6744 0.000 isolated
## 1500 697.6744 0.000 isolated
## 1501 697.6744 0.000 isolated
## 1502 697.6744 0.000 isolated
## 1503 697.6744 0.000 isolated
## 1504 697.6744 0.000 isolated
## 1505 697.6744 0.000 isolated
## 1506 697.6744 0.000 isolated
## 1507 697.6744 0.000 isolated
## 1508 697.6744 0.000 isolated
## 1509 697.6744 0.000 isolated
## 1510 697.6744 0.000 isolated
## 1511 697.6744 0.000 isolated
## 1512 697.6744 0.000 isolated
## 1513 1229.6512 0.000 isolated
## 1514 1229.6512 0.000 isolated
## 1515 1229.6512 0.000 isolated
## 1516 1229.6512 0.000 isolated
## 1517 1229.6512 0.000 isolated
## 1518 1229.6512 0.000 isolated
## 1519 1229.6512 0.000 isolated
## 1520 1229.6512 0.000 isolated
## 1521 1229.6512 0.000 isolated
## 1522 1229.6512 0.000 isolated
## 1523 1229.6512 0.000 isolated
## 1524 1229.6512 0.000 isolated
## 1525 1229.6512 0.000 isolated
## 1526 1229.6512 0.000 isolated
## 1527 1229.6512 0.000 isolated
## 1528 1229.6512 0.000 isolated
## 1529 1229.6512 0.000 isolated
## 1530 1229.6512 0.000 isolated
## 1531 1229.6512 0.000 isolated
## 1532 1229.6512 0.000 isolated
## 1533 1229.6512 0.000 isolated
## 1534 1229.6512 0.000 isolated
## 1535 1229.6512 0.000 isolated
## 1536 1229.6512 0.000 isolated
## 1537 981.9767 2243.895 isolated
## 1538 981.9767 2243.895 isolated
## 1539 981.9767 2243.895 isolated
## 1540 981.9767 2243.895 isolated
## 1541 981.9767 2243.895 isolated
## 1542 981.9767 2243.895 isolated
## 1543 981.9767 2243.895 isolated
## 1544 981.9767 2243.895 isolated
## 1545 981.9767 2243.895 isolated
## 1546 981.9767 2243.895 isolated
## 1547 981.9767 2243.895 isolated
## 1548 981.9767 2243.895 isolated
## 1549 981.9767 2243.895 isolated
## 1550 981.9767 2243.895 isolated
## 1551 981.9767 2243.895 isolated
## 1552 981.9767 2243.895 isolated
## 1553 981.9767 2243.895 isolated
## 1554 981.9767 2243.895 isolated
## 1555 981.9767 2243.895 isolated
## 1556 981.9767 2243.895 isolated
## 1557 981.9767 2243.895 isolated
## 1558 981.9767 2243.895 isolated
## 1559 981.9767 2243.895 isolated
## 1560 981.9767 2243.895 isolated
## 1561 2337.2093 0.000 isolated
## 1562 2337.2093 0.000 isolated
## 1563 2337.2093 0.000 isolated
## 1564 2337.2093 0.000 isolated
## 1565 2337.2093 0.000 isolated
## 1566 2337.2093 0.000 isolated
## 1567 2337.2093 0.000 isolated
## 1568 2337.2093 0.000 isolated
## 1569 2337.2093 0.000 isolated
## 1570 2337.2093 0.000 isolated
## 1571 2337.2093 0.000 isolated
## 1572 2337.2093 0.000 isolated
## 1573 2337.2093 0.000 isolated
## 1574 2337.2093 0.000 isolated
## 1575 2337.2093 0.000 isolated
## 1576 2337.2093 0.000 isolated
## 1577 2337.2093 0.000 isolated
## 1578 2337.2093 0.000 isolated
## 1579 2337.2093 0.000 isolated
## 1580 2337.2093 0.000 isolated
## 1581 2337.2093 0.000 isolated
## 1582 2337.2093 0.000 isolated
## 1583 2337.2093 0.000 isolated
## 1584 2337.2093 0.000 isolated
## 1585 1308.1395 0.000 isolated
## 1586 1308.1395 0.000 isolated
## 1587 1308.1395 0.000 isolated
## 1588 1308.1395 0.000 isolated
## 1589 1308.1395 0.000 isolated
## 1590 1308.1395 0.000 isolated
## 1591 1308.1395 0.000 isolated
## 1592 1308.1395 0.000 isolated
## 1593 1308.1395 0.000 isolated
## 1594 1308.1395 0.000 isolated
## 1595 1308.1395 0.000 isolated
## 1596 1308.1395 0.000 isolated
## 1597 1308.1395 0.000 isolated
## 1598 1308.1395 0.000 isolated
## 1599 1308.1395 0.000 isolated
## 1600 1308.1395 0.000 isolated
## 1601 1308.1395 0.000 isolated
## 1602 1308.1395 0.000 isolated
## 1603 1308.1395 0.000 isolated
## 1604 1308.1395 0.000 isolated
## 1605 1308.1395 0.000 isolated
## 1606 1308.1395 0.000 isolated
## 1607 1308.1395 0.000 isolated
## 1608 1308.1395 0.000 isolated
## 1609 1090.1163 0.000 isolated
## 1610 1090.1163 0.000 isolated
## 1611 1090.1163 0.000 isolated
## 1612 1090.1163 0.000 isolated
## 1613 1090.1163 0.000 isolated
## 1614 1090.1163 0.000 isolated
## 1615 1090.1163 0.000 isolated
## 1616 1090.1163 0.000 isolated
## 1617 1090.1163 0.000 isolated
## 1618 1090.1163 0.000 isolated
## 1619 1090.1163 0.000 isolated
## 1620 1090.1163 0.000 isolated
## 1621 1090.1163 0.000 isolated
## 1622 1090.1163 0.000 isolated
## 1623 1090.1163 0.000 isolated
## 1624 1090.1163 0.000 isolated
## 1625 1090.1163 0.000 isolated
## 1626 1090.1163 0.000 isolated
## 1627 1090.1163 0.000 isolated
## 1628 1090.1163 0.000 isolated
## 1629 1090.1163 0.000 isolated
## 1630 1090.1163 0.000 isolated
## 1631 1090.1163 0.000 isolated
## 1632 1090.1163 0.000 isolated
## 1633 0.0000 0.000 isolated
## 1634 0.0000 0.000 isolated
## 1635 0.0000 0.000 isolated
## 1636 0.0000 0.000 isolated
## 1637 0.0000 0.000 isolated
## 1638 0.0000 0.000 isolated
## 1639 0.0000 0.000 isolated
## 1640 0.0000 0.000 isolated
## 1641 0.0000 0.000 isolated
## 1642 0.0000 0.000 isolated
## 1643 0.0000 0.000 isolated
## 1644 0.0000 0.000 isolated
## 1645 0.0000 0.000 isolated
## 1646 0.0000 0.000 isolated
## 1647 0.0000 0.000 isolated
## 1648 0.0000 0.000 isolated
## 1649 0.0000 0.000 isolated
## 1650 0.0000 0.000 isolated
## 1651 0.0000 0.000 isolated
## 1652 0.0000 0.000 isolated
## 1653 0.0000 0.000 isolated
## 1654 0.0000 0.000 isolated
## 1655 0.0000 0.000 isolated
## 1656 0.0000 0.000 isolated
## 1657 0.0000 0.000 isolated
## 1658 0.0000 0.000 isolated
## 1659 0.0000 0.000 isolated
## 1660 0.0000 0.000 isolated
## 1661 0.0000 0.000 isolated
## 1662 0.0000 0.000 isolated
## 1663 0.0000 0.000 isolated
## 1664 0.0000 0.000 isolated
## 1665 0.0000 0.000 isolated
## 1666 0.0000 0.000 isolated
## 1667 0.0000 0.000 isolated
## 1668 0.0000 0.000 isolated
## 1669 0.0000 0.000 isolated
## 1670 0.0000 0.000 isolated
## 1671 0.0000 0.000 isolated
## 1672 0.0000 0.000 isolated
## 1673 0.0000 0.000 isolated
## 1674 0.0000 0.000 isolated
## 1675 0.0000 0.000 isolated
## 1676 0.0000 0.000 isolated
## 1677 0.0000 0.000 isolated
## 1678 0.0000 0.000 isolated
## 1679 0.0000 0.000 isolated
## 1680 0.0000 0.000 isolated
## 1681 0.0000 0.000 isolated
## 1682 0.0000 0.000 isolated
## 1683 0.0000 0.000 isolated
## 1684 0.0000 0.000 isolated
## 1685 0.0000 0.000 isolated
## 1686 0.0000 0.000 isolated
## 1687 0.0000 0.000 isolated
## 1688 0.0000 0.000 isolated
## 1689 0.0000 0.000 isolated
## 1690 0.0000 0.000 isolated
## 1691 0.0000 0.000 isolated
## 1692 0.0000 0.000 isolated
## 1693 0.0000 0.000 isolated
## 1694 0.0000 0.000 isolated
## 1695 0.0000 0.000 isolated
## 1696 0.0000 0.000 isolated
## 1697 0.0000 0.000 isolated
## 1698 0.0000 0.000 isolated
## 1699 0.0000 0.000 isolated
## 1700 0.0000 0.000 isolated
## 1701 0.0000 0.000 isolated
## 1702 0.0000 0.000 isolated
## 1703 0.0000 0.000 isolated
## 1704 0.0000 0.000 isolated
## 1705 0.0000 0.000 isolated
## 1706 0.0000 0.000 isolated
## 1707 0.0000 0.000 isolated
## 1708 0.0000 0.000 isolated
## 1709 0.0000 0.000 isolated
## 1710 0.0000 0.000 isolated
## 1711 0.0000 0.000 isolated
## 1712 0.0000 0.000 isolated
## 1713 0.0000 0.000 isolated
## 1714 0.0000 0.000 isolated
## 1715 0.0000 0.000 isolated
## 1716 0.0000 0.000 isolated
## 1717 0.0000 0.000 isolated
## 1718 0.0000 0.000 isolated
## 1719 0.0000 0.000 isolated
## 1720 0.0000 0.000 isolated
## 1721 0.0000 0.000 isolated
## 1722 0.0000 0.000 isolated
## 1723 0.0000 0.000 isolated
## 1724 0.0000 0.000 isolated
## 1725 0.0000 0.000 isolated
## 1726 0.0000 0.000 isolated
## 1727 0.0000 0.000 isolated
## 1728 0.0000 0.000 isolated
## 1729 981.9767 2243.895 isolated
## 1730 981.9767 2243.895 isolated
## 1731 981.9767 2243.895 isolated
## 1732 981.9767 2243.895 isolated
## 1733 981.9767 2243.895 isolated
## 1734 981.9767 2243.895 isolated
## 1735 981.9767 2243.895 isolated
## 1736 981.9767 2243.895 isolated
## 1737 981.9767 2243.895 isolated
## 1738 981.9767 2243.895 isolated
## 1739 981.9767 2243.895 isolated
## 1740 981.9767 2243.895 isolated
## 1741 981.9767 2243.895 isolated
## 1742 981.9767 2243.895 isolated
## 1743 981.9767 2243.895 isolated
## 1744 981.9767 2243.895 isolated
## 1745 981.9767 2243.895 isolated
## 1746 981.9767 2243.895 isolated
## 1747 981.9767 2243.895 isolated
## 1748 981.9767 2243.895 isolated
## 1749 981.9767 2243.895 isolated
## 1750 981.9767 2243.895 isolated
## 1751 981.9767 2243.895 isolated
## 1752 981.9767 2243.895 isolated
## 1753 1622.0930 0.000 isolated
## 1754 1622.0930 0.000 isolated
## 1755 1622.0930 0.000 isolated
## 1756 1622.0930 0.000 isolated
## 1757 1622.0930 0.000 isolated
## 1758 1622.0930 0.000 isolated
## 1759 1622.0930 0.000 isolated
## 1760 1622.0930 0.000 isolated
## 1761 1622.0930 0.000 isolated
## 1762 1622.0930 0.000 isolated
## 1763 1622.0930 0.000 isolated
## 1764 1622.0930 0.000 isolated
## 1765 1622.0930 0.000 isolated
## 1766 1622.0930 0.000 isolated
## 1767 1622.0930 0.000 isolated
## 1768 1622.0930 0.000 isolated
## 1769 1622.0930 0.000 isolated
## 1770 1622.0930 0.000 isolated
## 1771 1622.0930 0.000 isolated
## 1772 1622.0930 0.000 isolated
## 1773 1622.0930 0.000 isolated
## 1774 1622.0930 0.000 isolated
## 1775 1622.0930 0.000 isolated
## 1776 1622.0930 0.000 isolated
## 1777 1613.3721 0.000 isolated
## 1778 1613.3721 0.000 isolated
## 1779 1613.3721 0.000 isolated
## 1780 1613.3721 0.000 isolated
## 1781 1613.3721 0.000 isolated
## 1782 1613.3721 0.000 isolated
## 1783 1613.3721 0.000 isolated
## 1784 1613.3721 0.000 isolated
## 1785 1613.3721 0.000 isolated
## 1786 1613.3721 0.000 isolated
## 1787 1613.3721 0.000 isolated
## 1788 1613.3721 0.000 isolated
## 1789 1613.3721 0.000 isolated
## 1790 1613.3721 0.000 isolated
## 1791 1613.3721 0.000 isolated
## 1792 1613.3721 0.000 isolated
## 1793 1613.3721 0.000 isolated
## 1794 1613.3721 0.000 isolated
## 1795 1613.3721 0.000 isolated
## 1796 1613.3721 0.000 isolated
## 1797 1613.3721 0.000 isolated
## 1798 1613.3721 0.000 isolated
## 1799 1613.3721 0.000 isolated
## 1800 1613.3721 0.000 isolated
## 1801 2136.6279 0.000 isolated
## 1802 2136.6279 0.000 isolated
## 1803 2136.6279 0.000 isolated
## 1804 2136.6279 0.000 isolated
## 1805 2136.6279 0.000 isolated
## 1806 2136.6279 0.000 isolated
## 1807 2136.6279 0.000 isolated
## 1808 2136.6279 0.000 isolated
## 1809 2136.6279 0.000 isolated
## 1810 2136.6279 0.000 isolated
## 1811 2136.6279 0.000 isolated
## 1812 2136.6279 0.000 isolated
## 1813 2136.6279 0.000 isolated
## 1814 2136.6279 0.000 isolated
## 1815 2136.6279 0.000 isolated
## 1816 2136.6279 0.000 isolated
## 1817 2136.6279 0.000 isolated
## 1818 2136.6279 0.000 isolated
## 1819 2136.6279 0.000 isolated
## 1820 2136.6279 0.000 isolated
## 1821 2136.6279 0.000 isolated
## 1822 2136.6279 0.000 isolated
## 1823 2136.6279 0.000 isolated
## 1824 2136.6279 0.000 isolated
## 1825 1090.1163 0.000 isolated
## 1826 1090.1163 0.000 isolated
## 1827 1090.1163 0.000 isolated
## 1828 1090.1163 0.000 isolated
## 1829 1090.1163 0.000 isolated
## 1830 1090.1163 0.000 isolated
## 1831 1090.1163 0.000 isolated
## 1832 1090.1163 0.000 isolated
## 1833 1090.1163 0.000 isolated
## 1834 1090.1163 0.000 isolated
## 1835 1090.1163 0.000 isolated
## 1836 1090.1163 0.000 isolated
## 1837 1090.1163 0.000 isolated
## 1838 1090.1163 0.000 isolated
## 1839 1090.1163 0.000 isolated
## 1840 1090.1163 0.000 isolated
## 1841 1090.1163 0.000 isolated
## 1842 1090.1163 0.000 isolated
## 1843 1090.1163 0.000 isolated
## 1844 1090.1163 0.000 isolated
## 1845 1090.1163 0.000 isolated
## 1846 1090.1163 0.000 isolated
## 1847 1090.1163 0.000 isolated
## 1848 1090.1163 0.000 isolated
## 1849 1090.1163 0.000 isolated
## 1850 1090.1163 0.000 isolated
## 1851 1090.1163 0.000 isolated
## 1852 1090.1163 0.000 isolated
## 1853 1090.1163 0.000 isolated
## 1854 1090.1163 0.000 isolated
## 1855 1090.1163 0.000 isolated
## 1856 1090.1163 0.000 isolated
## 1857 1090.1163 0.000 isolated
## 1858 1090.1163 0.000 isolated
## 1859 1090.1163 0.000 isolated
## 1860 1090.1163 0.000 isolated
## 1861 1090.1163 0.000 isolated
## 1862 1090.1163 0.000 isolated
## 1863 1090.1163 0.000 isolated
## 1864 1090.1163 0.000 isolated
## 1865 1090.1163 0.000 isolated
## 1866 1090.1163 0.000 isolated
## 1867 1090.1163 0.000 isolated
## 1868 1090.1163 0.000 isolated
## 1869 1090.1163 0.000 isolated
## 1870 1090.1163 0.000 isolated
## 1871 1090.1163 0.000 isolated
## 1872 1090.1163 0.000 isolated
## 1873 3126.4535 0.000 isolated
## 1874 3126.4535 0.000 isolated
## 1875 3126.4535 0.000 isolated
## 1876 3126.4535 0.000 isolated
## 1877 3126.4535 0.000 isolated
## 1878 3126.4535 0.000 isolated
## 1879 3126.4535 0.000 isolated
## 1880 3126.4535 0.000 isolated
## 1881 3126.4535 0.000 isolated
## 1882 3126.4535 0.000 isolated
## 1883 3126.4535 0.000 isolated
## 1884 3126.4535 0.000 isolated
## 1885 3126.4535 0.000 isolated
## 1886 3126.4535 0.000 isolated
## 1887 3126.4535 0.000 isolated
## 1888 3126.4535 0.000 isolated
## 1889 3126.4535 0.000 isolated
## 1890 3126.4535 0.000 isolated
## 1891 3126.4535 0.000 isolated
## 1892 3126.4535 0.000 isolated
## 1893 3126.4535 0.000 isolated
## 1894 3126.4535 0.000 isolated
## 1895 3126.4535 0.000 isolated
## 1896 3126.4535 0.000 isolated
## 1897 1077.0349 0.000 isolated
## 1898 1077.0349 0.000 isolated
## 1899 1077.0349 0.000 isolated
## 1900 1077.0349 0.000 isolated
## 1901 1077.0349 0.000 isolated
## 1902 1077.0349 0.000 isolated
## 1903 1077.0349 0.000 isolated
## 1904 1077.0349 0.000 isolated
## 1905 1077.0349 0.000 isolated
## 1906 1077.0349 0.000 isolated
## 1907 1077.0349 0.000 isolated
## 1908 1077.0349 0.000 isolated
## 1909 1077.0349 0.000 isolated
## 1910 1077.0349 0.000 isolated
## 1911 1077.0349 0.000 isolated
## 1912 1077.0349 0.000 isolated
## 1913 1077.0349 0.000 isolated
## 1914 1077.0349 0.000 isolated
## 1915 1077.0349 0.000 isolated
## 1916 1077.0349 0.000 isolated
## 1917 1077.0349 0.000 isolated
## 1918 1077.0349 0.000 isolated
## 1919 1077.0349 0.000 isolated
## 1920 1077.0349 0.000 isolated
## 1921 981.9767 2243.895 isolated
## 1922 981.9767 2243.895 isolated
## 1923 981.9767 2243.895 isolated
## 1924 981.9767 2243.895 isolated
## 1925 981.9767 2243.895 isolated
## 1926 981.9767 2243.895 isolated
## 1927 981.9767 2243.895 isolated
## 1928 981.9767 2243.895 isolated
## 1929 981.9767 2243.895 isolated
## 1930 981.9767 2243.895 isolated
## 1931 981.9767 2243.895 isolated
## 1932 981.9767 2243.895 isolated
## 1933 981.9767 2243.895 isolated
## 1934 981.9767 2243.895 isolated
## 1935 981.9767 2243.895 isolated
## 1936 981.9767 2243.895 isolated
## 1937 981.9767 2243.895 isolated
## 1938 981.9767 2243.895 isolated
## 1939 981.9767 2243.895 isolated
## 1940 981.9767 2243.895 isolated
## 1941 981.9767 2243.895 isolated
## 1942 981.9767 2243.895 isolated
## 1943 981.9767 2243.895 isolated
## 1944 981.9767 2243.895 isolated
## 1945 1526.1628 0.000 isolated
## 1946 1526.1628 0.000 isolated
## 1947 1526.1628 0.000 isolated
## 1948 1526.1628 0.000 isolated
## 1949 1526.1628 0.000 isolated
## 1950 1526.1628 0.000 isolated
## 1951 1526.1628 0.000 isolated
## 1952 1526.1628 0.000 isolated
## 1953 1526.1628 0.000 isolated
## 1954 1526.1628 0.000 isolated
## 1955 1526.1628 0.000 isolated
## 1956 1526.1628 0.000 isolated
## 1957 1526.1628 0.000 isolated
## 1958 1526.1628 0.000 isolated
## 1959 1526.1628 0.000 isolated
## 1960 1526.1628 0.000 isolated
## 1961 1526.1628 0.000 isolated
## 1962 1526.1628 0.000 isolated
## 1963 1526.1628 0.000 isolated
## 1964 1526.1628 0.000 isolated
## 1965 1526.1628 0.000 isolated
## 1966 1526.1628 0.000 isolated
## 1967 1526.1628 0.000 isolated
## 1968 1526.1628 0.000 isolated
## 1969 1793.0233 0.000 isolated
## 1970 1793.0233 0.000 isolated
## 1971 1793.0233 0.000 isolated
## 1972 1793.0233 0.000 isolated
## 1973 1793.0233 0.000 isolated
## 1974 1793.0233 0.000 isolated
## 1975 1793.0233 0.000 isolated
## 1976 1793.0233 0.000 isolated
## 1977 1793.0233 0.000 isolated
## 1978 1793.0233 0.000 isolated
## 1979 1793.0233 0.000 isolated
## 1980 1793.0233 0.000 isolated
## 1981 1793.0233 0.000 isolated
## 1982 1793.0233 0.000 isolated
## 1983 1793.0233 0.000 isolated
## 1984 1793.0233 0.000 isolated
## 1985 1793.0233 0.000 isolated
## 1986 1793.0233 0.000 isolated
## 1987 1793.0233 0.000 isolated
## 1988 1793.0233 0.000 isolated
## 1989 1793.0233 0.000 isolated
## 1990 1793.0233 0.000 isolated
## 1991 1793.0233 0.000 isolated
## 1992 1793.0233 0.000 isolated
## 1993 3165.6977 0.000 isolated
## 1994 3165.6977 0.000 isolated
## 1995 3165.6977 0.000 isolated
## 1996 3165.6977 0.000 isolated
## 1997 3165.6977 0.000 isolated
## 1998 3165.6977 0.000 isolated
## 1999 3165.6977 0.000 isolated
## 2000 3165.6977 0.000 isolated
## 2001 3165.6977 0.000 isolated
## 2002 3165.6977 0.000 isolated
## 2003 3165.6977 0.000 isolated
## 2004 3165.6977 0.000 isolated
## 2005 3165.6977 0.000 isolated
## 2006 3165.6977 0.000 isolated
## 2007 3165.6977 0.000 isolated
## 2008 3165.6977 0.000 isolated
## 2009 3165.6977 0.000 isolated
## 2010 3165.6977 0.000 isolated
## 2011 3165.6977 0.000 isolated
## 2012 3165.6977 0.000 isolated
## 2013 3165.6977 0.000 isolated
## 2014 3165.6977 0.000 isolated
## 2015 3165.6977 0.000 isolated
## 2016 3165.6977 0.000 isolated
## 2017 1090.1163 0.000 isolated
## 2018 1090.1163 0.000 isolated
## 2019 1090.1163 0.000 isolated
## 2020 1090.1163 0.000 isolated
## 2021 1090.1163 0.000 isolated
## 2022 1090.1163 0.000 isolated
## 2023 1090.1163 0.000 isolated
## 2024 1090.1163 0.000 isolated
## 2025 1090.1163 0.000 isolated
## 2026 1090.1163 0.000 isolated
## 2027 1090.1163 0.000 isolated
## 2028 1090.1163 0.000 isolated
## 2029 1090.1163 0.000 isolated
## 2030 1090.1163 0.000 isolated
## 2031 1090.1163 0.000 isolated
## 2032 1090.1163 0.000 isolated
## 2033 1090.1163 0.000 isolated
## 2034 1090.1163 0.000 isolated
## 2035 1090.1163 0.000 isolated
## 2036 1090.1163 0.000 isolated
## 2037 1090.1163 0.000 isolated
## 2038 1090.1163 0.000 isolated
## 2039 1090.1163 0.000 isolated
## 2040 1090.1163 0.000 isolated
## 2041 767.4419 0.000 isolated
## 2042 767.4419 0.000 isolated
## 2043 767.4419 0.000 isolated
## 2044 767.4419 0.000 isolated
## 2045 767.4419 0.000 isolated
## 2046 767.4419 0.000 isolated
## 2047 767.4419 0.000 isolated
## 2048 767.4419 0.000 isolated
## 2049 767.4419 0.000 isolated
## 2050 767.4419 0.000 isolated
## 2051 767.4419 0.000 isolated
## 2052 767.4419 0.000 isolated
## 2053 767.4419 0.000 isolated
## 2054 767.4419 0.000 isolated
## 2055 767.4419 0.000 isolated
## 2056 767.4419 0.000 isolated
## 2057 767.4419 0.000 isolated
## 2058 767.4419 0.000 isolated
## 2059 767.4419 0.000 isolated
## 2060 767.4419 0.000 isolated
## 2061 767.4419 0.000 isolated
## 2062 767.4419 0.000 isolated
## 2063 767.4419 0.000 isolated
## 2064 767.4419 0.000 isolated
## 2065 1460.7558 0.000 isolated
## 2066 1460.7558 0.000 isolated
## 2067 1460.7558 0.000 isolated
## 2068 1460.7558 0.000 isolated
## 2069 1460.7558 0.000 isolated
## 2070 1460.7558 0.000 isolated
## 2071 1460.7558 0.000 isolated
## 2072 1460.7558 0.000 isolated
## 2073 1460.7558 0.000 isolated
## 2074 1460.7558 0.000 isolated
## 2075 1460.7558 0.000 isolated
## 2076 1460.7558 0.000 isolated
## 2077 1460.7558 0.000 isolated
## 2078 1460.7558 0.000 isolated
## 2079 1460.7558 0.000 isolated
## 2080 1460.7558 0.000 isolated
## 2081 1460.7558 0.000 isolated
## 2082 1460.7558 0.000 isolated
## 2083 1460.7558 0.000 isolated
## 2084 1460.7558 0.000 isolated
## 2085 1460.7558 0.000 isolated
## 2086 1460.7558 0.000 isolated
## 2087 1460.7558 0.000 isolated
## 2088 1460.7558 0.000 isolated
## 2089 187.5000 0.000 isolated
## 2090 187.5000 0.000 isolated
## 2091 187.5000 0.000 isolated
## 2092 187.5000 0.000 isolated
## 2093 187.5000 0.000 isolated
## 2094 187.5000 0.000 isolated
## 2095 187.5000 0.000 isolated
## 2096 187.5000 0.000 isolated
## 2097 187.5000 0.000 isolated
## 2098 187.5000 0.000 isolated
## 2099 187.5000 0.000 isolated
## 2100 187.5000 0.000 isolated
## 2101 187.5000 0.000 isolated
## 2102 187.5000 0.000 isolated
## 2103 187.5000 0.000 isolated
## 2104 187.5000 0.000 isolated
## 2105 187.5000 0.000 isolated
## 2106 187.5000 0.000 isolated
## 2107 187.5000 0.000 isolated
## 2108 187.5000 0.000 isolated
## 2109 187.5000 0.000 isolated
## 2110 187.5000 0.000 isolated
## 2111 187.5000 0.000 isolated
## 2112 187.5000 0.000 isolated
## 2113 981.9767 2243.895 isolated
## 2114 981.9767 2243.895 isolated
## 2115 981.9767 2243.895 isolated
## 2116 981.9767 2243.895 isolated
## 2117 981.9767 2243.895 isolated
## 2118 981.9767 2243.895 isolated
## 2119 981.9767 2243.895 isolated
## 2120 981.9767 2243.895 isolated
## 2121 981.9767 2243.895 isolated
## 2122 981.9767 2243.895 isolated
## 2123 981.9767 2243.895 isolated
## 2124 981.9767 2243.895 isolated
## 2125 981.9767 2243.895 isolated
## 2126 981.9767 2243.895 isolated
## 2127 981.9767 2243.895 isolated
## 2128 981.9767 2243.895 isolated
## 2129 981.9767 2243.895 isolated
## 2130 981.9767 2243.895 isolated
## 2131 981.9767 2243.895 isolated
## 2132 981.9767 2243.895 isolated
## 2133 981.9767 2243.895 isolated
## 2134 981.9767 2243.895 isolated
## 2135 981.9767 2243.895 isolated
## 2136 981.9767 2243.895 isolated
## 2137 436.0465 0.000 isolated
## 2138 436.0465 0.000 isolated
## 2139 436.0465 0.000 isolated
## 2140 436.0465 0.000 isolated
## 2141 436.0465 0.000 isolated
## 2142 436.0465 0.000 isolated
## 2143 436.0465 0.000 isolated
## 2144 436.0465 0.000 isolated
## 2145 436.0465 0.000 isolated
## 2146 436.0465 0.000 isolated
## 2147 436.0465 0.000 isolated
## 2148 436.0465 0.000 isolated
## 2149 436.0465 0.000 isolated
## 2150 436.0465 0.000 isolated
## 2151 436.0465 0.000 isolated
## 2152 436.0465 0.000 isolated
## 2153 436.0465 0.000 isolated
## 2154 436.0465 0.000 isolated
## 2155 436.0465 0.000 isolated
## 2156 436.0465 0.000 isolated
## 2157 436.0465 0.000 isolated
## 2158 436.0465 0.000 isolated
## 2159 436.0465 0.000 isolated
## 2160 436.0465 0.000 isolated
## 2161 1705.8140 0.000 isolated
## 2162 1705.8140 0.000 isolated
## 2163 1705.8140 0.000 isolated
## 2164 1705.8140 0.000 isolated
## 2165 1705.8140 0.000 isolated
## 2166 1705.8140 0.000 isolated
## 2167 1705.8140 0.000 isolated
## 2168 1705.8140 0.000 isolated
## 2169 1705.8140 0.000 isolated
## 2170 1705.8140 0.000 isolated
## 2171 1705.8140 0.000 isolated
## 2172 1705.8140 0.000 isolated
## 2173 1705.8140 0.000 isolated
## 2174 1705.8140 0.000 isolated
## 2175 1705.8140 0.000 isolated
## 2176 1705.8140 0.000 isolated
## 2177 1705.8140 0.000 isolated
## 2178 1705.8140 0.000 isolated
## 2179 1705.8140 0.000 isolated
## 2180 1705.8140 0.000 isolated
## 2181 1705.8140 0.000 isolated
## 2182 1705.8140 0.000 isolated
## 2183 1705.8140 0.000 isolated
## 2184 1705.8140 0.000 isolated
## 2185 3340.1163 0.000 isolated
## 2186 3340.1163 0.000 isolated
## 2187 3340.1163 0.000 isolated
## 2188 3340.1163 0.000 isolated
## 2189 3340.1163 0.000 isolated
## 2190 3340.1163 0.000 isolated
## 2191 3340.1163 0.000 isolated
## 2192 3340.1163 0.000 isolated
## 2193 3340.1163 0.000 isolated
## 2194 3340.1163 0.000 isolated
## 2195 3340.1163 0.000 isolated
## 2196 3340.1163 0.000 isolated
## 2197 3340.1163 0.000 isolated
## 2198 3340.1163 0.000 isolated
## 2199 3340.1163 0.000 isolated
## 2200 3340.1163 0.000 isolated
## 2201 3340.1163 0.000 isolated
## 2202 3340.1163 0.000 isolated
## 2203 3340.1163 0.000 isolated
## 2204 3340.1163 0.000 isolated
## 2205 3340.1163 0.000 isolated
## 2206 3340.1163 0.000 isolated
## 2207 3340.1163 0.000 isolated
## 2208 3340.1163 0.000 isolated
## 2209 0.0000 0.000 isolated
## 2210 0.0000 0.000 isolated
## 2211 0.0000 0.000 isolated
## 2212 0.0000 0.000 isolated
## 2213 0.0000 0.000 isolated
## 2214 0.0000 0.000 isolated
## 2215 0.0000 0.000 isolated
## 2216 0.0000 0.000 isolated
## 2217 0.0000 0.000 isolated
## 2218 0.0000 0.000 isolated
## 2219 0.0000 0.000 isolated
## 2220 0.0000 0.000 isolated
## 2221 0.0000 0.000 isolated
## 2222 0.0000 0.000 isolated
## 2223 0.0000 0.000 isolated
## 2224 0.0000 0.000 isolated
## 2225 0.0000 0.000 isolated
## 2226 0.0000 0.000 isolated
## 2227 0.0000 0.000 isolated
## 2228 0.0000 0.000 isolated
## 2229 0.0000 0.000 isolated
## 2230 0.0000 0.000 isolated
## 2231 0.0000 0.000 isolated
## 2232 0.0000 0.000 isolated
## 2233 3270.3488 0.000 isolated
## 2234 3270.3488 0.000 isolated
## 2235 3270.3488 0.000 isolated
## 2236 3270.3488 0.000 isolated
## 2237 3270.3488 0.000 isolated
## 2238 3270.3488 0.000 isolated
## 2239 3270.3488 0.000 isolated
## 2240 3270.3488 0.000 isolated
## 2241 3270.3488 0.000 isolated
## 2242 3270.3488 0.000 isolated
## 2243 3270.3488 0.000 isolated
## 2244 3270.3488 0.000 isolated
## 2245 3270.3488 0.000 isolated
## 2246 3270.3488 0.000 isolated
## 2247 3270.3488 0.000 isolated
## 2248 3270.3488 0.000 isolated
## 2249 3270.3488 0.000 isolated
## 2250 3270.3488 0.000 isolated
## 2251 3270.3488 0.000 isolated
## 2252 3270.3488 0.000 isolated
## 2253 3270.3488 0.000 isolated
## 2254 3270.3488 0.000 isolated
## 2255 3270.3488 0.000 isolated
## 2256 3270.3488 0.000 isolated
## 2257 218.0233 0.000 isolated
## 2258 218.0233 0.000 isolated
## 2259 218.0233 0.000 isolated
## 2260 218.0233 0.000 isolated
## 2261 218.0233 0.000 isolated
## 2262 218.0233 0.000 isolated
## 2263 218.0233 0.000 isolated
## 2264 218.0233 0.000 isolated
## 2265 218.0233 0.000 isolated
## 2266 218.0233 0.000 isolated
## 2267 218.0233 0.000 isolated
## 2268 218.0233 0.000 isolated
## 2269 218.0233 0.000 isolated
## 2270 218.0233 0.000 isolated
## 2271 218.0233 0.000 isolated
## 2272 218.0233 0.000 isolated
## 2273 218.0233 0.000 isolated
## 2274 218.0233 0.000 isolated
## 2275 218.0233 0.000 isolated
## 2276 218.0233 0.000 isolated
## 2277 218.0233 0.000 isolated
## 2278 218.0233 0.000 isolated
## 2279 218.0233 0.000 isolated
## 2280 218.0233 0.000 isolated
## 2281 928.7791 0.000 isolated
## 2282 928.7791 0.000 isolated
## 2283 928.7791 0.000 isolated
## 2284 928.7791 0.000 isolated
## 2285 928.7791 0.000 isolated
## 2286 928.7791 0.000 isolated
## 2287 928.7791 0.000 isolated
## 2288 928.7791 0.000 isolated
## 2289 928.7791 0.000 isolated
## 2290 928.7791 0.000 isolated
## 2291 928.7791 0.000 isolated
## 2292 928.7791 0.000 isolated
## 2293 928.7791 0.000 isolated
## 2294 928.7791 0.000 isolated
## 2295 928.7791 0.000 isolated
## 2296 928.7791 0.000 isolated
## 2297 928.7791 0.000 isolated
## 2298 928.7791 0.000 isolated
## 2299 928.7791 0.000 isolated
## 2300 928.7791 0.000 isolated
## 2301 928.7791 0.000 isolated
## 2302 928.7791 0.000 isolated
## 2303 928.7791 0.000 isolated
## 2304 928.7791 0.000 isolated
## 2305 981.9767 2243.895 isolated
## 2306 981.9767 2243.895 isolated
## 2307 981.9767 2243.895 isolated
## 2308 981.9767 2243.895 isolated
## 2309 981.9767 2243.895 isolated
## 2310 981.9767 2243.895 isolated
## 2311 981.9767 2243.895 isolated
## 2312 981.9767 2243.895 isolated
## 2313 981.9767 2243.895 isolated
## 2314 981.9767 2243.895 isolated
## 2315 981.9767 2243.895 isolated
## 2316 981.9767 2243.895 isolated
## 2317 981.9767 2243.895 isolated
## 2318 981.9767 2243.895 isolated
## 2319 981.9767 2243.895 isolated
## 2320 981.9767 2243.895 isolated
## 2321 981.9767 2243.895 isolated
## 2322 981.9767 2243.895 isolated
## 2323 981.9767 2243.895 isolated
## 2324 981.9767 2243.895 isolated
## 2325 981.9767 2243.895 isolated
## 2326 981.9767 2243.895 isolated
## 2327 981.9767 2243.895 isolated
## 2328 981.9767 2243.895 isolated
## 2329 3261.6279 0.000 isolated
## 2330 3261.6279 0.000 isolated
## 2331 3261.6279 0.000 isolated
## 2332 3261.6279 0.000 isolated
## 2333 3261.6279 0.000 isolated
## 2334 3261.6279 0.000 isolated
## 2335 3261.6279 0.000 isolated
## 2336 3261.6279 0.000 isolated
## 2337 3261.6279 0.000 isolated
## 2338 3261.6279 0.000 isolated
## 2339 3261.6279 0.000 isolated
## 2340 3261.6279 0.000 isolated
## 2341 3261.6279 0.000 isolated
## 2342 3261.6279 0.000 isolated
## 2343 3261.6279 0.000 isolated
## 2344 3261.6279 0.000 isolated
## 2345 3261.6279 0.000 isolated
## 2346 3261.6279 0.000 isolated
## 2347 3261.6279 0.000 isolated
## 2348 3261.6279 0.000 isolated
## 2349 3261.6279 0.000 isolated
## 2350 3261.6279 0.000 isolated
## 2351 3261.6279 0.000 isolated
## 2352 3261.6279 0.000 isolated
## 2353 2883.1395 0.000 isolated
## 2354 2883.1395 0.000 isolated
## 2355 2883.1395 0.000 isolated
## 2356 2883.1395 0.000 isolated
## 2357 2883.1395 0.000 isolated
## 2358 2883.1395 0.000 isolated
## 2359 2883.1395 0.000 isolated
## 2360 2883.1395 0.000 isolated
## 2361 2883.1395 0.000 isolated
## 2362 2883.1395 0.000 isolated
## 2363 2883.1395 0.000 isolated
## 2364 2883.1395 0.000 isolated
## 2365 2883.1395 0.000 isolated
## 2366 2883.1395 0.000 isolated
## 2367 2883.1395 0.000 isolated
## 2368 2883.1395 0.000 isolated
## 2369 2883.1395 0.000 isolated
## 2370 2883.1395 0.000 isolated
## 2371 2883.1395 0.000 isolated
## 2372 2883.1395 0.000 isolated
## 2373 2883.1395 0.000 isolated
## 2374 2883.1395 0.000 isolated
## 2375 2883.1395 0.000 isolated
## 2376 2883.1395 0.000 isolated
## 2377 7011.6279 0.000 isolated
## 2378 7011.6279 0.000 isolated
## 2379 7011.6279 0.000 isolated
## 2380 7011.6279 0.000 isolated
## 2381 7011.6279 0.000 isolated
## 2382 7011.6279 0.000 isolated
## 2383 7011.6279 0.000 isolated
## 2384 7011.6279 0.000 isolated
## 2385 7011.6279 0.000 isolated
## 2386 7011.6279 0.000 isolated
## 2387 7011.6279 0.000 isolated
## 2388 7011.6279 0.000 isolated
## 2389 7011.6279 0.000 isolated
## 2390 7011.6279 0.000 isolated
## 2391 7011.6279 0.000 isolated
## 2392 7011.6279 0.000 isolated
## 2393 7011.6279 0.000 isolated
## 2394 7011.6279 0.000 isolated
## 2395 7011.6279 0.000 isolated
## 2396 7011.6279 0.000 isolated
## 2397 7011.6279 0.000 isolated
## 2398 7011.6279 0.000 isolated
## 2399 7011.6279 0.000 isolated
## 2400 7011.6279 0.000 isolated
## 2401 2215.1163 0.000 isolated
## 2402 2215.1163 0.000 isolated
## 2403 2215.1163 0.000 isolated
## 2404 2215.1163 0.000 isolated
## 2405 2215.1163 0.000 isolated
## 2406 2215.1163 0.000 isolated
## 2407 2215.1163 0.000 isolated
## 2408 2215.1163 0.000 isolated
## 2409 2215.1163 0.000 isolated
## 2410 2215.1163 0.000 isolated
## 2411 2215.1163 0.000 isolated
## 2412 2215.1163 0.000 isolated
## 2413 2215.1163 0.000 isolated
## 2414 2215.1163 0.000 isolated
## 2415 2215.1163 0.000 isolated
## 2416 2215.1163 0.000 isolated
## 2417 2215.1163 0.000 isolated
## 2418 2215.1163 0.000 isolated
## 2419 2215.1163 0.000 isolated
## 2420 2215.1163 0.000 isolated
## 2421 2215.1163 0.000 isolated
## 2422 2215.1163 0.000 isolated
## 2423 2215.1163 0.000 isolated
## 2424 2215.1163 0.000 isolated
## 2425 5450.5814 0.000 isolated
## 2426 5450.5814 0.000 isolated
## 2427 5450.5814 0.000 isolated
## 2428 5450.5814 0.000 isolated
## 2429 5450.5814 0.000 isolated
## 2430 5450.5814 0.000 isolated
## 2431 5450.5814 0.000 isolated
## 2432 5450.5814 0.000 isolated
## 2433 5450.5814 0.000 isolated
## 2434 5450.5814 0.000 isolated
## 2435 5450.5814 0.000 isolated
## 2436 5450.5814 0.000 isolated
## 2437 5450.5814 0.000 isolated
## 2438 5450.5814 0.000 isolated
## 2439 5450.5814 0.000 isolated
## 2440 5450.5814 0.000 isolated
## 2441 5450.5814 0.000 isolated
## 2442 5450.5814 0.000 isolated
## 2443 5450.5814 0.000 isolated
## 2444 5450.5814 0.000 isolated
## 2445 5450.5814 0.000 isolated
## 2446 5450.5814 0.000 isolated
## 2447 5450.5814 0.000 isolated
## 2448 5450.5814 0.000 isolated
## 2449 806.6860 0.000 isolated
## 2450 806.6860 0.000 isolated
## 2451 806.6860 0.000 isolated
## 2452 806.6860 0.000 isolated
## 2453 806.6860 0.000 isolated
## 2454 806.6860 0.000 isolated
## 2455 806.6860 0.000 isolated
## 2456 806.6860 0.000 isolated
## 2457 806.6860 0.000 isolated
## 2458 806.6860 0.000 isolated
## 2459 806.6860 0.000 isolated
## 2460 806.6860 0.000 isolated
## 2461 806.6860 0.000 isolated
## 2462 806.6860 0.000 isolated
## 2463 806.6860 0.000 isolated
## 2464 806.6860 0.000 isolated
## 2465 806.6860 0.000 isolated
## 2466 806.6860 0.000 isolated
## 2467 806.6860 0.000 isolated
## 2468 806.6860 0.000 isolated
## 2469 806.6860 0.000 isolated
## 2470 806.6860 0.000 isolated
## 2471 806.6860 0.000 isolated
## 2472 806.6860 0.000 isolated
## 2473 1229.6512 0.000 isolated
## 2474 1229.6512 0.000 isolated
## 2475 1229.6512 0.000 isolated
## 2476 1229.6512 0.000 isolated
## 2477 1229.6512 0.000 isolated
## 2478 1229.6512 0.000 isolated
## 2479 1229.6512 0.000 isolated
## 2480 1229.6512 0.000 isolated
## 2481 1229.6512 0.000 isolated
## 2482 1229.6512 0.000 isolated
## 2483 1229.6512 0.000 isolated
## 2484 1229.6512 0.000 isolated
## 2485 1229.6512 0.000 isolated
## 2486 1229.6512 0.000 isolated
## 2487 1229.6512 0.000 isolated
## 2488 1229.6512 0.000 isolated
## 2489 1229.6512 0.000 isolated
## 2490 1229.6512 0.000 isolated
## 2491 1229.6512 0.000 isolated
## 2492 1229.6512 0.000 isolated
## 2493 1229.6512 0.000 isolated
## 2494 1229.6512 0.000 isolated
## 2495 1229.6512 0.000 isolated
## 2496 1229.6512 0.000 isolated
## 2497 981.9767 2243.895 isolated
## 2498 981.9767 2243.895 isolated
## 2499 981.9767 2243.895 isolated
## 2500 981.9767 2243.895 isolated
## 2501 981.9767 2243.895 isolated
## 2502 981.9767 2243.895 isolated
## 2503 981.9767 2243.895 isolated
## 2504 981.9767 2243.895 isolated
## 2505 981.9767 2243.895 isolated
## 2506 981.9767 2243.895 isolated
## 2507 981.9767 2243.895 isolated
## 2508 981.9767 2243.895 isolated
## 2509 981.9767 2243.895 isolated
## 2510 981.9767 2243.895 isolated
## 2511 981.9767 2243.895 isolated
## 2512 981.9767 2243.895 isolated
## 2513 981.9767 2243.895 isolated
## 2514 981.9767 2243.895 isolated
## 2515 981.9767 2243.895 isolated
## 2516 981.9767 2243.895 isolated
## 2517 981.9767 2243.895 isolated
## 2518 981.9767 2243.895 isolated
## 2519 981.9767 2243.895 isolated
## 2520 981.9767 2243.895 isolated
## 2521 2616.2791 0.000 isolated
## 2522 2616.2791 0.000 isolated
## 2523 2616.2791 0.000 isolated
## 2524 2616.2791 0.000 isolated
## 2525 2616.2791 0.000 isolated
## 2526 2616.2791 0.000 isolated
## 2527 2616.2791 0.000 isolated
## 2528 2616.2791 0.000 isolated
## 2529 2616.2791 0.000 isolated
## 2530 2616.2791 0.000 isolated
## 2531 2616.2791 0.000 isolated
## 2532 2616.2791 0.000 isolated
## 2533 2616.2791 0.000 isolated
## 2534 2616.2791 0.000 isolated
## 2535 2616.2791 0.000 isolated
## 2536 2616.2791 0.000 isolated
## 2537 2616.2791 0.000 isolated
## 2538 2616.2791 0.000 isolated
## 2539 2616.2791 0.000 isolated
## 2540 2616.2791 0.000 isolated
## 2541 2616.2791 0.000 isolated
## 2542 2616.2791 0.000 isolated
## 2543 2616.2791 0.000 isolated
## 2544 2616.2791 0.000 isolated
## 2545 1793.0233 0.000 isolated
## 2546 1793.0233 0.000 isolated
## 2547 1793.0233 0.000 isolated
## 2548 1793.0233 0.000 isolated
## 2549 1793.0233 0.000 isolated
## 2550 1793.0233 0.000 isolated
## 2551 1793.0233 0.000 isolated
## 2552 1793.0233 0.000 isolated
## 2553 1793.0233 0.000 isolated
## 2554 1793.0233 0.000 isolated
## 2555 1793.0233 0.000 isolated
## 2556 1793.0233 0.000 isolated
## 2557 1793.0233 0.000 isolated
## 2558 1793.0233 0.000 isolated
## 2559 1793.0233 0.000 isolated
## 2560 1793.0233 0.000 isolated
## 2561 1793.0233 0.000 isolated
## 2562 1793.0233 0.000 isolated
## 2563 1793.0233 0.000 isolated
## 2564 1793.0233 0.000 isolated
## 2565 1793.0233 0.000 isolated
## 2566 1793.0233 0.000 isolated
## 2567 1793.0233 0.000 isolated
## 2568 1793.0233 0.000 isolated
## 2569 1308.1395 0.000 isolated
## 2570 1308.1395 0.000 isolated
## 2571 1308.1395 0.000 isolated
## 2572 1308.1395 0.000 isolated
## 2573 1308.1395 0.000 isolated
## 2574 1308.1395 0.000 isolated
## 2575 1308.1395 0.000 isolated
## 2576 1308.1395 0.000 isolated
## 2577 1308.1395 0.000 isolated
## 2578 1308.1395 0.000 isolated
## 2579 1308.1395 0.000 isolated
## 2580 1308.1395 0.000 isolated
## 2581 1308.1395 0.000 isolated
## 2582 1308.1395 0.000 isolated
## 2583 1308.1395 0.000 isolated
## 2584 1308.1395 0.000 isolated
## 2585 1308.1395 0.000 isolated
## 2586 1308.1395 0.000 isolated
## 2587 1308.1395 0.000 isolated
## 2588 1308.1395 0.000 isolated
## 2589 1308.1395 0.000 isolated
## 2590 1308.1395 0.000 isolated
## 2591 1308.1395 0.000 isolated
## 2592 1308.1395 0.000 isolated
## 2593 0.0000 0.000 isolated
## 2594 0.0000 0.000 isolated
## 2595 0.0000 0.000 isolated
## 2596 0.0000 0.000 isolated
## 2597 0.0000 0.000 isolated
## 2598 0.0000 0.000 isolated
## 2599 0.0000 0.000 isolated
## 2600 0.0000 0.000 isolated
## 2601 0.0000 0.000 isolated
## 2602 0.0000 0.000 isolated
## 2603 0.0000 0.000 isolated
## 2604 0.0000 0.000 isolated
## 2605 0.0000 0.000 isolated
## 2606 0.0000 0.000 isolated
## 2607 0.0000 0.000 isolated
## 2608 0.0000 0.000 isolated
## 2609 0.0000 0.000 isolated
## 2610 0.0000 0.000 isolated
## 2611 0.0000 0.000 isolated
## 2612 0.0000 0.000 isolated
## 2613 0.0000 0.000 isolated
## 2614 0.0000 0.000 isolated
## 2615 0.0000 0.000 isolated
## 2616 0.0000 0.000 isolated
## 2617 0.0000 0.000 isolated
## 2618 0.0000 0.000 isolated
## 2619 0.0000 0.000 isolated
## 2620 0.0000 0.000 isolated
## 2621 0.0000 0.000 isolated
## 2622 0.0000 0.000 isolated
## 2623 0.0000 0.000 isolated
## 2624 0.0000 0.000 isolated
## 2625 0.0000 0.000 isolated
## 2626 0.0000 0.000 isolated
## 2627 0.0000 0.000 isolated
## 2628 0.0000 0.000 isolated
## 2629 0.0000 0.000 isolated
## 2630 0.0000 0.000 isolated
## 2631 0.0000 0.000 isolated
## patch_size_symmetry baseline_total_metaecosystem_bioarea_mm2
## 1 asymmetric 152.9084
## 2 asymmetric 152.9084
## 3 asymmetric 152.9084
## 4 asymmetric 152.9084
## 5 asymmetric 152.9084
## 6 asymmetric 152.9084
## 7 asymmetric 152.9084
## 8 asymmetric 152.9084
## 9 asymmetric 152.9084
## 10 asymmetric 152.9084
## 11 asymmetric 152.9084
## 12 asymmetric 152.9084
## 13 asymmetric 152.9084
## 14 asymmetric 152.9084
## 15 asymmetric 152.9084
## 16 asymmetric 152.9084
## 17 asymmetric 152.9084
## 18 asymmetric 152.9084
## 19 asymmetric 152.9084
## 20 asymmetric 152.9084
## 21 asymmetric 152.9084
## 22 asymmetric 152.9084
## 23 asymmetric 152.9084
## 24 asymmetric 152.9084
## 25 asymmetric 152.9084
## 26 asymmetric 152.9084
## 27 asymmetric 152.9084
## 28 asymmetric 152.9084
## 29 asymmetric 152.9084
## 30 asymmetric 152.9084
## 31 asymmetric 152.9084
## 32 asymmetric 152.9084
## 33 asymmetric 152.9084
## 34 asymmetric 152.9084
## 35 asymmetric 152.9084
## 36 asymmetric 152.9084
## 37 asymmetric 152.9084
## 38 asymmetric 152.9084
## 39 asymmetric 152.9084
## 40 asymmetric 152.9084
## 41 asymmetric 152.9084
## 42 asymmetric 152.9084
## 43 asymmetric 152.9084
## 44 asymmetric 152.9084
## 45 asymmetric 152.9084
## 46 asymmetric 152.9084
## 47 asymmetric 152.9084
## 48 asymmetric 152.9084
## 49 asymmetric 152.9084
## 50 asymmetric 152.9084
## 51 asymmetric 152.9084
## 52 asymmetric 152.9084
## 53 asymmetric 152.9084
## 54 asymmetric 152.9084
## 55 asymmetric 152.9084
## 56 asymmetric 152.9084
## 57 asymmetric 152.9084
## 58 asymmetric 152.9084
## 59 asymmetric 152.9084
## 60 asymmetric 152.9084
## 61 asymmetric 152.9084
## 62 asymmetric 152.9084
## 63 asymmetric 152.9084
## 64 asymmetric 152.9084
## 65 asymmetric 152.9084
## 66 asymmetric 152.9084
## 67 asymmetric 152.9084
## 68 asymmetric 152.9084
## 69 asymmetric 152.9084
## 70 asymmetric 152.9084
## 71 asymmetric 152.9084
## 72 asymmetric 152.9084
## 73 asymmetric 152.9084
## 74 asymmetric 152.9084
## 75 asymmetric 152.9084
## 76 asymmetric 152.9084
## 77 asymmetric 152.9084
## 78 asymmetric 152.9084
## 79 asymmetric 152.9084
## 80 asymmetric 152.9084
## 81 asymmetric 152.9084
## 82 asymmetric 152.9084
## 83 asymmetric 152.9084
## 84 asymmetric 152.9084
## 85 asymmetric 152.9084
## 86 asymmetric 152.9084
## 87 asymmetric 152.9084
## 88 asymmetric 152.9084
## 89 asymmetric 152.9084
## 90 asymmetric 152.9084
## 91 asymmetric 152.9084
## 92 asymmetric 152.9084
## 93 asymmetric 152.9084
## 94 asymmetric 152.9084
## 95 asymmetric 152.9084
## 96 asymmetric 152.9084
## 97 asymmetric 152.9084
## 98 asymmetric 152.9084
## 99 asymmetric 152.9084
## 100 asymmetric 152.9084
## 101 asymmetric 152.9084
## 102 asymmetric 152.9084
## 103 asymmetric 152.9084
## 104 asymmetric 152.9084
## 105 asymmetric 152.9084
## 106 asymmetric 152.9084
## 107 asymmetric 152.9084
## 108 asymmetric 152.9084
## 109 asymmetric 152.9084
## 110 asymmetric 152.9084
## 111 asymmetric 152.9084
## 112 asymmetric 152.9084
## 113 asymmetric 152.9084
## 114 asymmetric 152.9084
## 115 asymmetric 152.9084
## 116 asymmetric 152.9084
## 117 asymmetric 152.9084
## 118 asymmetric 152.9084
## 119 asymmetric 152.9084
## 120 asymmetric 152.9084
## 121 asymmetric 152.9084
## 122 asymmetric 152.9084
## 123 asymmetric 152.9084
## 124 asymmetric 152.9084
## 125 asymmetric 152.9084
## 126 asymmetric 152.9084
## 127 asymmetric 152.9084
## 128 asymmetric 152.9084
## 129 asymmetric 152.9084
## 130 asymmetric 152.9084
## 131 asymmetric 152.9084
## 132 asymmetric 152.9084
## 133 asymmetric 152.9084
## 134 asymmetric 152.9084
## 135 asymmetric 152.9084
## 136 asymmetric 152.9084
## 137 asymmetric 152.9084
## 138 asymmetric 152.9084
## 139 asymmetric 152.9084
## 140 asymmetric 152.9084
## 141 asymmetric 152.9084
## 142 asymmetric 152.9084
## 143 asymmetric 152.9084
## 144 asymmetric 152.9084
## 145 asymmetric 152.9084
## 146 asymmetric 152.9084
## 147 asymmetric 152.9084
## 148 asymmetric 152.9084
## 149 asymmetric 152.9084
## 150 asymmetric 152.9084
## 151 asymmetric 152.9084
## 152 asymmetric 152.9084
## 153 asymmetric 152.9084
## 154 asymmetric 152.9084
## 155 asymmetric 152.9084
## 156 asymmetric 152.9084
## 157 asymmetric 152.9084
## 158 asymmetric 152.9084
## 159 asymmetric 152.9084
## 160 asymmetric 152.9084
## 161 asymmetric 152.9084
## 162 asymmetric 152.9084
## 163 asymmetric 152.9084
## 164 asymmetric 152.9084
## 165 asymmetric 152.9084
## 166 asymmetric 152.9084
## 167 asymmetric 152.9084
## 168 asymmetric 152.9084
## 169 asymmetric 152.9084
## 170 asymmetric 152.9084
## 171 asymmetric 152.9084
## 172 asymmetric 152.9084
## 173 asymmetric 152.9084
## 174 asymmetric 152.9084
## 175 asymmetric 152.9084
## 176 asymmetric 152.9084
## 177 asymmetric 152.9084
## 178 asymmetric 152.9084
## 179 asymmetric 152.9084
## 180 asymmetric 152.9084
## 181 asymmetric 152.9084
## 182 asymmetric 152.9084
## 183 asymmetric 152.9084
## 184 asymmetric 152.9084
## 185 asymmetric 152.9084
## 186 asymmetric 152.9084
## 187 asymmetric 152.9084
## 188 asymmetric 152.9084
## 189 asymmetric 152.9084
## 190 asymmetric 152.9084
## 191 asymmetric 152.9084
## 192 asymmetric 152.9084
## 193 asymmetric 229.7802
## 194 asymmetric 229.7802
## 195 asymmetric 229.7802
## 196 asymmetric 229.7802
## 197 asymmetric 229.7802
## 198 asymmetric 229.7802
## 199 asymmetric 229.7802
## 200 asymmetric 229.7802
## 201 asymmetric 229.7802
## 202 asymmetric 229.7802
## 203 asymmetric 229.7802
## 204 asymmetric 229.7802
## 205 asymmetric 229.7802
## 206 asymmetric 229.7802
## 207 asymmetric 229.7802
## 208 asymmetric 229.7802
## 209 asymmetric 229.7802
## 210 asymmetric 229.7802
## 211 asymmetric 229.7802
## 212 asymmetric 229.7802
## 213 asymmetric 229.7802
## 214 asymmetric 229.7802
## 215 asymmetric 229.7802
## 216 asymmetric 229.7802
## 217 asymmetric 229.7802
## 218 asymmetric 229.7802
## 219 asymmetric 229.7802
## 220 asymmetric 229.7802
## 221 asymmetric 229.7802
## 222 asymmetric 229.7802
## 223 asymmetric 229.7802
## 224 asymmetric 229.7802
## 225 asymmetric 229.7802
## 226 asymmetric 229.7802
## 227 asymmetric 229.7802
## 228 asymmetric 229.7802
## 229 asymmetric 229.7802
## 230 asymmetric 229.7802
## 231 asymmetric 229.7802
## 232 asymmetric 229.7802
## 233 asymmetric 229.7802
## 234 asymmetric 229.7802
## 235 asymmetric 229.7802
## 236 asymmetric 229.7802
## 237 asymmetric 229.7802
## 238 asymmetric 229.7802
## 239 asymmetric 229.7802
## 240 asymmetric 229.7802
## 241 asymmetric 229.7802
## 242 asymmetric 229.7802
## 243 asymmetric 229.7802
## 244 asymmetric 229.7802
## 245 asymmetric 229.7802
## 246 asymmetric 229.7802
## 247 asymmetric 229.7802
## 248 asymmetric 229.7802
## 249 asymmetric 229.7802
## 250 asymmetric 229.7802
## 251 asymmetric 229.7802
## 252 asymmetric 229.7802
## 253 asymmetric 229.7802
## 254 asymmetric 229.7802
## 255 asymmetric 229.7802
## 256 asymmetric 229.7802
## 257 asymmetric 229.7802
## 258 asymmetric 229.7802
## 259 asymmetric 229.7802
## 260 asymmetric 229.7802
## 261 asymmetric 229.7802
## 262 asymmetric 229.7802
## 263 asymmetric 229.7802
## 264 asymmetric 229.7802
## 265 asymmetric 229.7802
## 266 asymmetric 229.7802
## 267 asymmetric 229.7802
## 268 asymmetric 229.7802
## 269 asymmetric 229.7802
## 270 asymmetric 229.7802
## 271 asymmetric 229.7802
## 272 asymmetric 229.7802
## 273 asymmetric 229.7802
## 274 asymmetric 229.7802
## 275 asymmetric 229.7802
## 276 asymmetric 229.7802
## 277 asymmetric 229.7802
## 278 asymmetric 229.7802
## 279 asymmetric 229.7802
## 280 asymmetric 229.7802
## 281 asymmetric 229.7802
## 282 asymmetric 229.7802
## 283 asymmetric 229.7802
## 284 asymmetric 229.7802
## 285 asymmetric 229.7802
## 286 asymmetric 229.7802
## 287 asymmetric 229.7802
## 288 asymmetric 229.7802
## 289 asymmetric 229.7802
## 290 asymmetric 229.7802
## 291 asymmetric 229.7802
## 292 asymmetric 229.7802
## 293 asymmetric 229.7802
## 294 asymmetric 229.7802
## 295 asymmetric 229.7802
## 296 asymmetric 229.7802
## 297 asymmetric 229.7802
## 298 asymmetric 229.7802
## 299 asymmetric 229.7802
## 300 asymmetric 229.7802
## 301 asymmetric 229.7802
## 302 asymmetric 229.7802
## 303 asymmetric 229.7802
## 304 asymmetric 229.7802
## 305 asymmetric 229.7802
## 306 asymmetric 229.7802
## 307 asymmetric 229.7802
## 308 asymmetric 229.7802
## 309 asymmetric 229.7802
## 310 asymmetric 229.7802
## 311 asymmetric 229.7802
## 312 asymmetric 229.7802
## 313 asymmetric 229.7802
## 314 asymmetric 229.7802
## 315 asymmetric 229.7802
## 316 asymmetric 229.7802
## 317 asymmetric 229.7802
## 318 asymmetric 229.7802
## 319 asymmetric 229.7802
## 320 asymmetric 229.7802
## 321 asymmetric 229.7802
## 322 asymmetric 229.7802
## 323 asymmetric 229.7802
## 324 asymmetric 229.7802
## 325 asymmetric 229.7802
## 326 asymmetric 229.7802
## 327 asymmetric 229.7802
## 328 asymmetric 229.7802
## 329 asymmetric 229.7802
## 330 asymmetric 229.7802
## 331 asymmetric 229.7802
## 332 asymmetric 229.7802
## 333 asymmetric 229.7802
## 334 asymmetric 229.7802
## 335 asymmetric 229.7802
## 336 asymmetric 229.7802
## 337 asymmetric 229.7802
## 338 asymmetric 229.7802
## 339 asymmetric 229.7802
## 340 asymmetric 229.7802
## 341 asymmetric 229.7802
## 342 asymmetric 229.7802
## 343 asymmetric 229.7802
## 344 asymmetric 229.7802
## 345 asymmetric 229.7802
## 346 asymmetric 229.7802
## 347 asymmetric 229.7802
## 348 asymmetric 229.7802
## 349 asymmetric 229.7802
## 350 asymmetric 229.7802
## 351 asymmetric 229.7802
## 352 asymmetric 229.7802
## 353 asymmetric 229.7802
## 354 asymmetric 229.7802
## 355 asymmetric 229.7802
## 356 asymmetric 229.7802
## 357 asymmetric 229.7802
## 358 asymmetric 229.7802
## 359 asymmetric 229.7802
## 360 asymmetric 229.7802
## 361 asymmetric 229.7802
## 362 asymmetric 229.7802
## 363 asymmetric 229.7802
## 364 asymmetric 229.7802
## 365 asymmetric 229.7802
## 366 asymmetric 229.7802
## 367 asymmetric 229.7802
## 368 asymmetric 229.7802
## 369 asymmetric 229.7802
## 370 asymmetric 229.7802
## 371 asymmetric 229.7802
## 372 asymmetric 229.7802
## 373 asymmetric 229.7802
## 374 asymmetric 229.7802
## 375 asymmetric 229.7802
## 376 asymmetric 229.7802
## 377 asymmetric 229.7802
## 378 asymmetric 229.7802
## 379 asymmetric 229.7802
## 380 asymmetric 229.7802
## 381 asymmetric 229.7802
## 382 asymmetric 229.7802
## 383 asymmetric 229.7802
## 384 asymmetric 229.7802
## 385 asymmetric 184.4961
## 386 asymmetric 184.4961
## 387 asymmetric 184.4961
## 388 asymmetric 184.4961
## 389 asymmetric 184.4961
## 390 asymmetric 184.4961
## 391 asymmetric 184.4961
## 392 asymmetric 184.4961
## 393 asymmetric 184.4961
## 394 asymmetric 184.4961
## 395 asymmetric 184.4961
## 396 asymmetric 184.4961
## 397 asymmetric 184.4961
## 398 asymmetric 184.4961
## 399 asymmetric 184.4961
## 400 asymmetric 184.4961
## 401 asymmetric 184.4961
## 402 asymmetric 184.4961
## 403 asymmetric 184.4961
## 404 asymmetric 184.4961
## 405 asymmetric 184.4961
## 406 asymmetric 184.4961
## 407 asymmetric 184.4961
## 408 asymmetric 184.4961
## 409 asymmetric 184.4961
## 410 asymmetric 184.4961
## 411 asymmetric 184.4961
## 412 asymmetric 184.4961
## 413 asymmetric 184.4961
## 414 asymmetric 184.4961
## 415 asymmetric 184.4961
## 416 asymmetric 184.4961
## 417 asymmetric 184.4961
## 418 asymmetric 184.4961
## 419 asymmetric 184.4961
## 420 asymmetric 184.4961
## 421 asymmetric 184.4961
## 422 asymmetric 184.4961
## 423 asymmetric 184.4961
## 424 asymmetric 184.4961
## 425 asymmetric 184.4961
## 426 asymmetric 184.4961
## 427 asymmetric 184.4961
## 428 asymmetric 184.4961
## 429 asymmetric 184.4961
## 430 asymmetric 184.4961
## 431 asymmetric 184.4961
## 432 asymmetric 184.4961
## 433 asymmetric 184.4961
## 434 asymmetric 184.4961
## 435 asymmetric 184.4961
## 436 asymmetric 184.4961
## 437 asymmetric 184.4961
## 438 asymmetric 184.4961
## 439 asymmetric 184.4961
## 440 asymmetric 184.4961
## 441 asymmetric 184.4961
## 442 asymmetric 184.4961
## 443 asymmetric 184.4961
## 444 asymmetric 184.4961
## 445 asymmetric 184.4961
## 446 asymmetric 184.4961
## 447 asymmetric 184.4961
## 448 asymmetric 184.4961
## 449 asymmetric 184.4961
## 450 asymmetric 184.4961
## 451 asymmetric 184.4961
## 452 asymmetric 184.4961
## 453 asymmetric 184.4961
## 454 asymmetric 184.4961
## 455 asymmetric 184.4961
## 456 asymmetric 184.4961
## 457 asymmetric 184.4961
## 458 asymmetric 184.4961
## 459 asymmetric 184.4961
## 460 asymmetric 184.4961
## 461 asymmetric 184.4961
## 462 asymmetric 184.4961
## 463 asymmetric 184.4961
## 464 asymmetric 184.4961
## 465 asymmetric 184.4961
## 466 asymmetric 184.4961
## 467 asymmetric 184.4961
## 468 asymmetric 184.4961
## 469 asymmetric 184.4961
## 470 asymmetric 184.4961
## 471 asymmetric 184.4961
## 472 asymmetric 184.4961
## 473 asymmetric 184.4961
## 474 asymmetric 184.4961
## 475 asymmetric 184.4961
## 476 asymmetric 184.4961
## 477 asymmetric 184.4961
## 478 asymmetric 184.4961
## 479 asymmetric 184.4961
## 480 asymmetric 184.4961
## 481 asymmetric 184.4961
## 482 asymmetric 184.4961
## 483 asymmetric 184.4961
## 484 asymmetric 184.4961
## 485 asymmetric 184.4961
## 486 asymmetric 184.4961
## 487 asymmetric 184.4961
## 488 asymmetric 184.4961
## 489 asymmetric 184.4961
## 490 asymmetric 184.4961
## 491 asymmetric 184.4961
## 492 asymmetric 184.4961
## 493 asymmetric 184.4961
## 494 asymmetric 184.4961
## 495 asymmetric 184.4961
## 496 asymmetric 184.4961
## 497 asymmetric 184.4961
## 498 asymmetric 184.4961
## 499 asymmetric 184.4961
## 500 asymmetric 184.4961
## 501 asymmetric 184.4961
## 502 asymmetric 184.4961
## 503 asymmetric 184.4961
## 504 asymmetric 184.4961
## 505 asymmetric 184.4961
## 506 asymmetric 184.4961
## 507 asymmetric 184.4961
## 508 asymmetric 184.4961
## 509 asymmetric 184.4961
## 510 asymmetric 184.4961
## 511 asymmetric 184.4961
## 512 asymmetric 184.4961
## 513 asymmetric 184.4961
## 514 asymmetric 184.4961
## 515 asymmetric 184.4961
## 516 asymmetric 184.4961
## 517 asymmetric 184.4961
## 518 asymmetric 184.4961
## 519 asymmetric 184.4961
## 520 asymmetric 184.4961
## 521 asymmetric 184.4961
## 522 asymmetric 184.4961
## 523 asymmetric 184.4961
## 524 asymmetric 184.4961
## 525 asymmetric 184.4961
## 526 asymmetric 184.4961
## 527 asymmetric 184.4961
## 528 asymmetric 184.4961
## 529 asymmetric 184.4961
## 530 asymmetric 184.4961
## 531 asymmetric 184.4961
## 532 asymmetric 184.4961
## 533 asymmetric 184.4961
## 534 asymmetric 184.4961
## 535 asymmetric 184.4961
## 536 asymmetric 184.4961
## 537 asymmetric 184.4961
## 538 asymmetric 184.4961
## 539 asymmetric 184.4961
## 540 asymmetric 184.4961
## 541 asymmetric 184.4961
## 542 asymmetric 184.4961
## 543 asymmetric 184.4961
## 544 asymmetric 184.4961
## 545 asymmetric 184.4961
## 546 asymmetric 184.4961
## 547 asymmetric 184.4961
## 548 asymmetric 184.4961
## 549 asymmetric 184.4961
## 550 asymmetric 184.4961
## 551 asymmetric 184.4961
## 552 asymmetric 184.4961
## 553 asymmetric 184.4961
## 554 asymmetric 184.4961
## 555 asymmetric 184.4961
## 556 asymmetric 184.4961
## 557 asymmetric 184.4961
## 558 asymmetric 184.4961
## 559 asymmetric 184.4961
## 560 asymmetric 184.4961
## 561 asymmetric 184.4961
## 562 asymmetric 184.4961
## 563 asymmetric 184.4961
## 564 asymmetric 184.4961
## 565 asymmetric 184.4961
## 566 asymmetric 184.4961
## 567 asymmetric 184.4961
## 568 asymmetric 184.4961
## 569 asymmetric 184.4961
## 570 asymmetric 184.4961
## 571 asymmetric 184.4961
## 572 asymmetric 184.4961
## 573 asymmetric 184.4961
## 574 asymmetric 184.4961
## 575 asymmetric 184.4961
## 576 asymmetric 184.4961
## 577 asymmetric 115.9153
## 578 asymmetric 115.9153
## 579 asymmetric 115.9153
## 580 asymmetric 115.9153
## 581 asymmetric 115.9153
## 582 asymmetric 115.9153
## 583 asymmetric 115.9153
## 584 asymmetric 115.9153
## 585 asymmetric 115.9153
## 586 asymmetric 115.9153
## 587 asymmetric 115.9153
## 588 asymmetric 115.9153
## 589 asymmetric 115.9153
## 590 asymmetric 115.9153
## 591 asymmetric 115.9153
## 592 asymmetric 115.9153
## 593 asymmetric 115.9153
## 594 asymmetric 115.9153
## 595 asymmetric 115.9153
## 596 asymmetric 115.9153
## 597 asymmetric 115.9153
## 598 asymmetric 115.9153
## 599 asymmetric 115.9153
## 600 asymmetric 115.9153
## 601 asymmetric 115.9153
## 602 asymmetric 115.9153
## 603 asymmetric 115.9153
## 604 asymmetric 115.9153
## 605 asymmetric 115.9153
## 606 asymmetric 115.9153
## 607 asymmetric 115.9153
## 608 asymmetric 115.9153
## 609 asymmetric 115.9153
## 610 asymmetric 115.9153
## 611 asymmetric 115.9153
## 612 asymmetric 115.9153
## 613 asymmetric 115.9153
## 614 asymmetric 115.9153
## 615 asymmetric 115.9153
## 616 asymmetric 115.9153
## 617 asymmetric 115.9153
## 618 asymmetric 115.9153
## 619 asymmetric 115.9153
## 620 asymmetric 115.9153
## 621 asymmetric 115.9153
## 622 asymmetric 115.9153
## 623 asymmetric 115.9153
## 624 asymmetric 115.9153
## 625 asymmetric 115.9153
## 626 asymmetric 115.9153
## 627 asymmetric 115.9153
## 628 asymmetric 115.9153
## 629 asymmetric 115.9153
## 630 asymmetric 115.9153
## 631 asymmetric 115.9153
## 632 asymmetric 115.9153
## 633 asymmetric 115.9153
## 634 asymmetric 115.9153
## 635 asymmetric 115.9153
## 636 asymmetric 115.9153
## 637 asymmetric 115.9153
## 638 asymmetric 115.9153
## 639 asymmetric 115.9153
## 640 asymmetric 115.9153
## 641 asymmetric 115.9153
## 642 asymmetric 115.9153
## 643 asymmetric 115.9153
## 644 asymmetric 115.9153
## 645 asymmetric 115.9153
## 646 asymmetric 115.9153
## 647 asymmetric 115.9153
## 648 asymmetric 115.9153
## 649 asymmetric 115.9153
## 650 asymmetric 115.9153
## 651 asymmetric 115.9153
## 652 asymmetric 115.9153
## 653 asymmetric 115.9153
## 654 asymmetric 115.9153
## 655 asymmetric 115.9153
## 656 asymmetric 115.9153
## 657 asymmetric 115.9153
## 658 asymmetric 115.9153
## 659 asymmetric 115.9153
## 660 asymmetric 115.9153
## 661 asymmetric 115.9153
## 662 asymmetric 115.9153
## 663 asymmetric 115.9153
## 664 asymmetric 115.9153
## 665 asymmetric 115.9153
## 666 asymmetric 115.9153
## 667 asymmetric 115.9153
## 668 asymmetric 115.9153
## 669 asymmetric 115.9153
## 670 asymmetric 115.9153
## 671 asymmetric 115.9153
## 672 asymmetric 115.9153
## 673 asymmetric 115.9153
## 674 asymmetric 115.9153
## 675 asymmetric 115.9153
## 676 asymmetric 115.9153
## 677 asymmetric 115.9153
## 678 asymmetric 115.9153
## 679 asymmetric 115.9153
## 680 asymmetric 115.9153
## 681 asymmetric 115.9153
## 682 asymmetric 115.9153
## 683 asymmetric 115.9153
## 684 asymmetric 115.9153
## 685 asymmetric 115.9153
## 686 asymmetric 115.9153
## 687 asymmetric 115.9153
## 688 asymmetric 115.9153
## 689 asymmetric 115.9153
## 690 asymmetric 115.9153
## 691 asymmetric 115.9153
## 692 asymmetric 115.9153
## 693 asymmetric 115.9153
## 694 asymmetric 115.9153
## 695 asymmetric 115.9153
## 696 asymmetric 115.9153
## 697 asymmetric 115.9153
## 698 asymmetric 115.9153
## 699 asymmetric 115.9153
## 700 asymmetric 115.9153
## 701 asymmetric 115.9153
## 702 asymmetric 115.9153
## 703 asymmetric 115.9153
## 704 asymmetric 115.9153
## 705 asymmetric 115.9153
## 706 asymmetric 115.9153
## 707 asymmetric 115.9153
## 708 asymmetric 115.9153
## 709 asymmetric 115.9153
## 710 asymmetric 115.9153
## 711 asymmetric 115.9153
## 712 asymmetric 115.9153
## 713 asymmetric 115.9153
## 714 asymmetric 115.9153
## 715 asymmetric 115.9153
## 716 asymmetric 115.9153
## 717 asymmetric 115.9153
## 718 asymmetric 115.9153
## 719 asymmetric 115.9153
## 720 asymmetric 115.9153
## 721 asymmetric 115.9153
## 722 asymmetric 115.9153
## 723 asymmetric 115.9153
## 724 asymmetric 115.9153
## 725 asymmetric 115.9153
## 726 asymmetric 115.9153
## 727 asymmetric 115.9153
## 728 asymmetric 115.9153
## 729 asymmetric 115.9153
## 730 asymmetric 115.9153
## 731 asymmetric 115.9153
## 732 asymmetric 115.9153
## 733 asymmetric 115.9153
## 734 asymmetric 115.9153
## 735 asymmetric 115.9153
## 736 asymmetric 115.9153
## 737 asymmetric 115.9153
## 738 asymmetric 115.9153
## 739 asymmetric 115.9153
## 740 asymmetric 115.9153
## 741 asymmetric 115.9153
## 742 asymmetric 115.9153
## 743 asymmetric 115.9153
## 744 asymmetric 115.9153
## 745 asymmetric 115.9153
## 746 asymmetric 115.9153
## 747 asymmetric 115.9153
## 748 asymmetric 115.9153
## 749 asymmetric 115.9153
## 750 asymmetric 115.9153
## 751 asymmetric 115.9153
## 752 asymmetric 115.9153
## 753 asymmetric 115.9153
## 754 asymmetric 115.9153
## 755 asymmetric 115.9153
## 756 asymmetric 115.9153
## 757 asymmetric 115.9153
## 758 asymmetric 115.9153
## 759 asymmetric 115.9153
## 760 asymmetric 115.9153
## 761 asymmetric 115.9153
## 762 asymmetric 115.9153
## 763 asymmetric 115.9153
## 764 asymmetric 115.9153
## 765 asymmetric 115.9153
## 766 asymmetric 115.9153
## 767 asymmetric 115.9153
## 768 asymmetric 115.9153
## 769 asymmetric 120.6473
## 770 asymmetric 120.6473
## 771 asymmetric 120.6473
## 772 asymmetric 120.6473
## 773 asymmetric 120.6473
## 774 asymmetric 120.6473
## 775 asymmetric 120.6473
## 776 asymmetric 120.6473
## 777 asymmetric 120.6473
## 778 asymmetric 120.6473
## 779 asymmetric 120.6473
## 780 asymmetric 120.6473
## 781 asymmetric 120.6473
## 782 asymmetric 120.6473
## 783 asymmetric 120.6473
## 784 asymmetric 120.6473
## 785 asymmetric 120.6473
## 786 asymmetric 120.6473
## 787 asymmetric 120.6473
## 788 asymmetric 120.6473
## 789 asymmetric 120.6473
## 790 asymmetric 120.6473
## 791 asymmetric 120.6473
## 792 asymmetric 120.6473
## 793 asymmetric 120.6473
## 794 asymmetric 120.6473
## 795 asymmetric 120.6473
## 796 asymmetric 120.6473
## 797 asymmetric 120.6473
## 798 asymmetric 120.6473
## 799 asymmetric 120.6473
## 800 asymmetric 120.6473
## 801 asymmetric 120.6473
## 802 asymmetric 120.6473
## 803 asymmetric 120.6473
## 804 asymmetric 120.6473
## 805 asymmetric 120.6473
## 806 asymmetric 120.6473
## 807 asymmetric 120.6473
## 808 asymmetric 120.6473
## 809 asymmetric 120.6473
## 810 asymmetric 120.6473
## 811 asymmetric 120.6473
## 812 asymmetric 120.6473
## 813 asymmetric 120.6473
## 814 asymmetric 120.6473
## 815 asymmetric 120.6473
## 816 asymmetric 120.6473
## 817 asymmetric 120.6473
## 818 asymmetric 120.6473
## 819 asymmetric 120.6473
## 820 asymmetric 120.6473
## 821 asymmetric 120.6473
## 822 asymmetric 120.6473
## 823 asymmetric 120.6473
## 824 asymmetric 120.6473
## 825 asymmetric 120.6473
## 826 asymmetric 120.6473
## 827 asymmetric 120.6473
## 828 asymmetric 120.6473
## 829 asymmetric 120.6473
## 830 asymmetric 120.6473
## 831 asymmetric 120.6473
## 832 asymmetric 120.6473
## 833 asymmetric 120.6473
## 834 asymmetric 120.6473
## 835 asymmetric 120.6473
## 836 asymmetric 120.6473
## 837 asymmetric 120.6473
## 838 asymmetric 120.6473
## 839 asymmetric 120.6473
## 840 asymmetric 120.6473
## 841 asymmetric 120.6473
## 842 asymmetric 120.6473
## 843 asymmetric 120.6473
## 844 asymmetric 120.6473
## 845 asymmetric 120.6473
## 846 asymmetric 120.6473
## 847 asymmetric 120.6473
## 848 asymmetric 120.6473
## 849 asymmetric 120.6473
## 850 asymmetric 120.6473
## 851 asymmetric 120.6473
## 852 asymmetric 120.6473
## 853 asymmetric 120.6473
## 854 asymmetric 120.6473
## 855 asymmetric 120.6473
## 856 asymmetric 120.6473
## 857 asymmetric 120.6473
## 858 asymmetric 120.6473
## 859 asymmetric 120.6473
## 860 asymmetric 120.6473
## 861 asymmetric 120.6473
## 862 asymmetric 120.6473
## 863 asymmetric 120.6473
## 864 asymmetric 120.6473
## 865 asymmetric 120.6473
## 866 asymmetric 120.6473
## 867 asymmetric 120.6473
## 868 asymmetric 120.6473
## 869 asymmetric 120.6473
## 870 asymmetric 120.6473
## 871 asymmetric 120.6473
## 872 asymmetric 120.6473
## 873 asymmetric 120.6473
## 874 asymmetric 120.6473
## 875 asymmetric 120.6473
## 876 asymmetric 120.6473
## 877 asymmetric 120.6473
## 878 asymmetric 120.6473
## 879 asymmetric 120.6473
## 880 asymmetric 120.6473
## 881 asymmetric 120.6473
## 882 asymmetric 120.6473
## 883 asymmetric 120.6473
## 884 asymmetric 120.6473
## 885 asymmetric 120.6473
## 886 asymmetric 120.6473
## 887 asymmetric 120.6473
## 888 asymmetric 120.6473
## 889 asymmetric 120.6473
## 890 asymmetric 120.6473
## 891 asymmetric 120.6473
## 892 asymmetric 120.6473
## 893 asymmetric 120.6473
## 894 asymmetric 120.6473
## 895 asymmetric 120.6473
## 896 asymmetric 120.6473
## 897 asymmetric 120.6473
## 898 asymmetric 120.6473
## 899 asymmetric 120.6473
## 900 asymmetric 120.6473
## 901 asymmetric 120.6473
## 902 asymmetric 120.6473
## 903 asymmetric 120.6473
## 904 asymmetric 120.6473
## 905 asymmetric 120.6473
## 906 asymmetric 120.6473
## 907 asymmetric 120.6473
## 908 asymmetric 120.6473
## 909 asymmetric 120.6473
## 910 asymmetric 120.6473
## 911 asymmetric 120.6473
## 912 asymmetric 120.6473
## 913 asymmetric 120.6473
## 914 asymmetric 120.6473
## 915 asymmetric 120.6473
## 916 asymmetric 120.6473
## 917 asymmetric 120.6473
## 918 asymmetric 120.6473
## 919 asymmetric 120.6473
## 920 asymmetric 120.6473
## 921 asymmetric 120.6473
## 922 asymmetric 120.6473
## 923 asymmetric 120.6473
## 924 asymmetric 120.6473
## 925 asymmetric 120.6473
## 926 asymmetric 120.6473
## 927 asymmetric 120.6473
## 928 asymmetric 120.6473
## 929 asymmetric 120.6473
## 930 asymmetric 120.6473
## 931 asymmetric 120.6473
## 932 asymmetric 120.6473
## 933 asymmetric 120.6473
## 934 asymmetric 120.6473
## 935 asymmetric 120.6473
## 936 asymmetric 120.6473
## 937 asymmetric 120.6473
## 938 asymmetric 120.6473
## 939 asymmetric 120.6473
## 940 asymmetric 120.6473
## 941 asymmetric 120.6473
## 942 asymmetric 120.6473
## 943 asymmetric 120.6473
## 944 asymmetric 120.6473
## 945 asymmetric 120.6473
## 946 asymmetric 120.6473
## 947 asymmetric 120.6473
## 948 asymmetric 120.6473
## 949 asymmetric 120.6473
## 950 asymmetric 120.6473
## 951 asymmetric 120.6473
## 952 asymmetric 120.6473
## 953 asymmetric 120.6473
## 954 asymmetric 120.6473
## 955 asymmetric 120.6473
## 956 asymmetric 120.6473
## 957 asymmetric 120.6473
## 958 asymmetric 120.6473
## 959 asymmetric 120.6473
## 960 asymmetric 120.6473
## 961 asymmetric 147.3015
## 962 asymmetric 147.3015
## 963 asymmetric 147.3015
## 964 asymmetric 147.3015
## 965 asymmetric 147.3015
## 966 asymmetric 147.3015
## 967 asymmetric 147.3015
## 968 asymmetric 147.3015
## 969 asymmetric 147.3015
## 970 asymmetric 147.3015
## 971 asymmetric 147.3015
## 972 asymmetric 147.3015
## 973 asymmetric 147.3015
## 974 asymmetric 147.3015
## 975 asymmetric 147.3015
## 976 asymmetric 147.3015
## 977 asymmetric 147.3015
## 978 asymmetric 147.3015
## 979 asymmetric 147.3015
## 980 asymmetric 147.3015
## 981 asymmetric 147.3015
## 982 asymmetric 147.3015
## 983 asymmetric 147.3015
## 984 asymmetric 147.3015
## 985 asymmetric 147.3015
## 986 asymmetric 147.3015
## 987 asymmetric 147.3015
## 988 asymmetric 147.3015
## 989 asymmetric 147.3015
## 990 asymmetric 147.3015
## 991 asymmetric 147.3015
## 992 asymmetric 147.3015
## 993 asymmetric 147.3015
## 994 asymmetric 147.3015
## 995 asymmetric 147.3015
## 996 asymmetric 147.3015
## 997 asymmetric 147.3015
## 998 asymmetric 147.3015
## 999 asymmetric 147.3015
## 1000 asymmetric 147.3015
## 1001 asymmetric 147.3015
## 1002 asymmetric 147.3015
## 1003 asymmetric 147.3015
## 1004 asymmetric 147.3015
## 1005 asymmetric 147.3015
## 1006 asymmetric 147.3015
## 1007 asymmetric 147.3015
## 1008 asymmetric 147.3015
## 1009 asymmetric 147.3015
## 1010 asymmetric 147.3015
## 1011 asymmetric 147.3015
## 1012 asymmetric 147.3015
## 1013 asymmetric 147.3015
## 1014 asymmetric 147.3015
## 1015 asymmetric 147.3015
## 1016 asymmetric 147.3015
## 1017 asymmetric 147.3015
## 1018 asymmetric 147.3015
## 1019 asymmetric 147.3015
## 1020 asymmetric 147.3015
## 1021 asymmetric 147.3015
## 1022 asymmetric 147.3015
## 1023 asymmetric 147.3015
## 1024 asymmetric 147.3015
## 1025 asymmetric 147.3015
## 1026 asymmetric 147.3015
## 1027 asymmetric 147.3015
## 1028 asymmetric 147.3015
## 1029 asymmetric 147.3015
## 1030 asymmetric 147.3015
## 1031 asymmetric 147.3015
## 1032 asymmetric 147.3015
## 1033 asymmetric 147.3015
## 1034 asymmetric 147.3015
## 1035 asymmetric 147.3015
## 1036 asymmetric 147.3015
## 1037 asymmetric 147.3015
## 1038 asymmetric 147.3015
## 1039 asymmetric 147.3015
## 1040 asymmetric 147.3015
## 1041 asymmetric 147.3015
## 1042 asymmetric 147.3015
## 1043 asymmetric 147.3015
## 1044 asymmetric 147.3015
## 1045 asymmetric 147.3015
## 1046 asymmetric 147.3015
## 1047 asymmetric 147.3015
## 1048 asymmetric 147.3015
## 1049 asymmetric 147.3015
## 1050 asymmetric 147.3015
## 1051 asymmetric 147.3015
## 1052 asymmetric 147.3015
## 1053 asymmetric 147.3015
## 1054 asymmetric 147.3015
## 1055 asymmetric 147.3015
## 1056 asymmetric 147.3015
## 1057 asymmetric 147.3015
## 1058 asymmetric 147.3015
## 1059 asymmetric 147.3015
## 1060 asymmetric 147.3015
## 1061 asymmetric 147.3015
## 1062 asymmetric 147.3015
## 1063 asymmetric 147.3015
## 1064 asymmetric 147.3015
## 1065 asymmetric 147.3015
## 1066 asymmetric 147.3015
## 1067 asymmetric 147.3015
## 1068 asymmetric 147.3015
## 1069 asymmetric 147.3015
## 1070 asymmetric 147.3015
## 1071 asymmetric 147.3015
## 1072 asymmetric 147.3015
## 1073 asymmetric 147.3015
## 1074 asymmetric 147.3015
## 1075 asymmetric 147.3015
## 1076 asymmetric 147.3015
## 1077 asymmetric 147.3015
## 1078 asymmetric 147.3015
## 1079 asymmetric 147.3015
## 1080 asymmetric 147.3015
## 1081 asymmetric 147.3015
## 1082 asymmetric 147.3015
## 1083 asymmetric 147.3015
## 1084 asymmetric 147.3015
## 1085 asymmetric 147.3015
## 1086 asymmetric 147.3015
## 1087 asymmetric 147.3015
## 1088 asymmetric 147.3015
## 1089 asymmetric 147.3015
## 1090 asymmetric 147.3015
## 1091 asymmetric 147.3015
## 1092 asymmetric 147.3015
## 1093 asymmetric 147.3015
## 1094 asymmetric 147.3015
## 1095 asymmetric 147.3015
## 1096 asymmetric 147.3015
## 1097 asymmetric 147.3015
## 1098 asymmetric 147.3015
## 1099 asymmetric 147.3015
## 1100 asymmetric 147.3015
## 1101 asymmetric 147.3015
## 1102 asymmetric 147.3015
## 1103 asymmetric 147.3015
## 1104 asymmetric 147.3015
## 1105 asymmetric 147.3015
## 1106 asymmetric 147.3015
## 1107 asymmetric 147.3015
## 1108 asymmetric 147.3015
## 1109 asymmetric 147.3015
## 1110 asymmetric 147.3015
## 1111 asymmetric 147.3015
## 1112 asymmetric 147.3015
## 1113 asymmetric 147.3015
## 1114 asymmetric 147.3015
## 1115 asymmetric 147.3015
## 1116 asymmetric 147.3015
## 1117 asymmetric 147.3015
## 1118 asymmetric 147.3015
## 1119 asymmetric 147.3015
## 1120 asymmetric 147.3015
## 1121 asymmetric 147.3015
## 1122 asymmetric 147.3015
## 1123 asymmetric 147.3015
## 1124 asymmetric 147.3015
## 1125 asymmetric 147.3015
## 1126 asymmetric 147.3015
## 1127 asymmetric 147.3015
## 1128 asymmetric 147.3015
## 1129 asymmetric 147.3015
## 1130 asymmetric 147.3015
## 1131 asymmetric 147.3015
## 1132 asymmetric 147.3015
## 1133 asymmetric 147.3015
## 1134 asymmetric 147.3015
## 1135 asymmetric 147.3015
## 1136 asymmetric 147.3015
## 1137 asymmetric 147.3015
## 1138 asymmetric 147.3015
## 1139 asymmetric 147.3015
## 1140 asymmetric 147.3015
## 1141 asymmetric 147.3015
## 1142 asymmetric 147.3015
## 1143 asymmetric 147.3015
## 1144 asymmetric 147.3015
## 1145 asymmetric 147.3015
## 1146 asymmetric 147.3015
## 1147 asymmetric 147.3015
## 1148 asymmetric 147.3015
## 1149 asymmetric 147.3015
## 1150 asymmetric 147.3015
## 1151 asymmetric 147.3015
## 1152 asymmetric 147.3015
## 1153 asymmetric 224.1733
## 1154 asymmetric 224.1733
## 1155 asymmetric 224.1733
## 1156 asymmetric 224.1733
## 1157 asymmetric 224.1733
## 1158 asymmetric 224.1733
## 1159 asymmetric 224.1733
## 1160 asymmetric 224.1733
## 1161 asymmetric 224.1733
## 1162 asymmetric 224.1733
## 1163 asymmetric 224.1733
## 1164 asymmetric 224.1733
## 1165 asymmetric 224.1733
## 1166 asymmetric 224.1733
## 1167 asymmetric 224.1733
## 1168 asymmetric 224.1733
## 1169 asymmetric 224.1733
## 1170 asymmetric 224.1733
## 1171 asymmetric 224.1733
## 1172 asymmetric 224.1733
## 1173 asymmetric 224.1733
## 1174 asymmetric 224.1733
## 1175 asymmetric 224.1733
## 1176 asymmetric 224.1733
## 1177 asymmetric 224.1733
## 1178 asymmetric 224.1733
## 1179 asymmetric 224.1733
## 1180 asymmetric 224.1733
## 1181 asymmetric 224.1733
## 1182 asymmetric 224.1733
## 1183 asymmetric 224.1733
## 1184 asymmetric 224.1733
## 1185 asymmetric 224.1733
## 1186 asymmetric 224.1733
## 1187 asymmetric 224.1733
## 1188 asymmetric 224.1733
## 1189 asymmetric 224.1733
## 1190 asymmetric 224.1733
## 1191 asymmetric 224.1733
## 1192 asymmetric 224.1733
## 1193 asymmetric 224.1733
## 1194 asymmetric 224.1733
## 1195 asymmetric 224.1733
## 1196 asymmetric 224.1733
## 1197 asymmetric 224.1733
## 1198 asymmetric 224.1733
## 1199 asymmetric 224.1733
## 1200 asymmetric 224.1733
## 1201 asymmetric 224.1733
## 1202 asymmetric 224.1733
## 1203 asymmetric 224.1733
## 1204 asymmetric 224.1733
## 1205 asymmetric 224.1733
## 1206 asymmetric 224.1733
## 1207 asymmetric 224.1733
## 1208 asymmetric 224.1733
## 1209 asymmetric 224.1733
## 1210 asymmetric 224.1733
## 1211 asymmetric 224.1733
## 1212 asymmetric 224.1733
## 1213 asymmetric 224.1733
## 1214 asymmetric 224.1733
## 1215 asymmetric 224.1733
## 1216 asymmetric 224.1733
## 1217 asymmetric 224.1733
## 1218 asymmetric 224.1733
## 1219 asymmetric 224.1733
## 1220 asymmetric 224.1733
## 1221 asymmetric 224.1733
## 1222 asymmetric 224.1733
## 1223 asymmetric 224.1733
## 1224 asymmetric 224.1733
## 1225 asymmetric 224.1733
## 1226 asymmetric 224.1733
## 1227 asymmetric 224.1733
## 1228 asymmetric 224.1733
## 1229 asymmetric 224.1733
## 1230 asymmetric 224.1733
## 1231 asymmetric 224.1733
## 1232 asymmetric 224.1733
## 1233 asymmetric 224.1733
## 1234 asymmetric 224.1733
## 1235 asymmetric 224.1733
## 1236 asymmetric 224.1733
## 1237 asymmetric 224.1733
## 1238 asymmetric 224.1733
## 1239 asymmetric 224.1733
## 1240 asymmetric 224.1733
## 1241 asymmetric 224.1733
## 1242 asymmetric 224.1733
## 1243 asymmetric 224.1733
## 1244 asymmetric 224.1733
## 1245 asymmetric 224.1733
## 1246 asymmetric 224.1733
## 1247 asymmetric 224.1733
## 1248 asymmetric 224.1733
## 1249 asymmetric 224.1733
## 1250 asymmetric 224.1733
## 1251 asymmetric 224.1733
## 1252 asymmetric 224.1733
## 1253 asymmetric 224.1733
## 1254 asymmetric 224.1733
## 1255 asymmetric 224.1733
## 1256 asymmetric 224.1733
## 1257 asymmetric 224.1733
## 1258 asymmetric 224.1733
## 1259 asymmetric 224.1733
## 1260 asymmetric 224.1733
## 1261 asymmetric 224.1733
## 1262 asymmetric 224.1733
## 1263 asymmetric 224.1733
## 1264 asymmetric 224.1733
## 1265 asymmetric 224.1733
## 1266 asymmetric 224.1733
## 1267 asymmetric 224.1733
## 1268 asymmetric 224.1733
## 1269 asymmetric 224.1733
## 1270 asymmetric 224.1733
## 1271 asymmetric 224.1733
## 1272 asymmetric 224.1733
## 1273 asymmetric 224.1733
## 1274 asymmetric 224.1733
## 1275 asymmetric 224.1733
## 1276 asymmetric 224.1733
## 1277 asymmetric 224.1733
## 1278 asymmetric 224.1733
## 1279 asymmetric 224.1733
## 1280 asymmetric 224.1733
## 1281 asymmetric 224.1733
## 1282 asymmetric 224.1733
## 1283 asymmetric 224.1733
## 1284 asymmetric 224.1733
## 1285 asymmetric 224.1733
## 1286 asymmetric 224.1733
## 1287 asymmetric 224.1733
## 1288 asymmetric 224.1733
## 1289 asymmetric 224.1733
## 1290 asymmetric 224.1733
## 1291 asymmetric 224.1733
## 1292 asymmetric 224.1733
## 1293 asymmetric 224.1733
## 1294 asymmetric 224.1733
## 1295 asymmetric 224.1733
## 1296 asymmetric 224.1733
## 1297 asymmetric 224.1733
## 1298 asymmetric 224.1733
## 1299 asymmetric 224.1733
## 1300 asymmetric 224.1733
## 1301 asymmetric 224.1733
## 1302 asymmetric 224.1733
## 1303 asymmetric 224.1733
## 1304 asymmetric 224.1733
## 1305 asymmetric 224.1733
## 1306 asymmetric 224.1733
## 1307 asymmetric 224.1733
## 1308 asymmetric 224.1733
## 1309 asymmetric 224.1733
## 1310 asymmetric 224.1733
## 1311 asymmetric 224.1733
## 1312 asymmetric 224.1733
## 1313 asymmetric 224.1733
## 1314 asymmetric 224.1733
## 1315 asymmetric 224.1733
## 1316 asymmetric 224.1733
## 1317 asymmetric 224.1733
## 1318 asymmetric 224.1733
## 1319 asymmetric 224.1733
## 1320 asymmetric 224.1733
## 1321 asymmetric 224.1733
## 1322 asymmetric 224.1733
## 1323 asymmetric 224.1733
## 1324 asymmetric 224.1733
## 1325 asymmetric 224.1733
## 1326 asymmetric 224.1733
## 1327 asymmetric 224.1733
## 1328 asymmetric 224.1733
## 1329 asymmetric 224.1733
## 1330 asymmetric 224.1733
## 1331 asymmetric 224.1733
## 1332 asymmetric 224.1733
## 1333 asymmetric 224.1733
## 1334 asymmetric 224.1733
## 1335 asymmetric 224.1733
## 1336 asymmetric 224.1733
## 1337 asymmetric 224.1733
## 1338 asymmetric 224.1733
## 1339 asymmetric 224.1733
## 1340 asymmetric 224.1733
## 1341 asymmetric 224.1733
## 1342 asymmetric 224.1733
## 1343 asymmetric 224.1733
## 1344 asymmetric 224.1733
## 1345 asymmetric 178.8893
## 1346 asymmetric 178.8893
## 1347 asymmetric 178.8893
## 1348 asymmetric 178.8893
## 1349 asymmetric 178.8893
## 1350 asymmetric 178.8893
## 1351 asymmetric 178.8893
## 1352 asymmetric 178.8893
## 1353 asymmetric 178.8893
## 1354 asymmetric 178.8893
## 1355 asymmetric 178.8893
## 1356 asymmetric 178.8893
## 1357 asymmetric 178.8893
## 1358 asymmetric 178.8893
## 1359 asymmetric 178.8893
## 1360 asymmetric 178.8893
## 1361 asymmetric 178.8893
## 1362 asymmetric 178.8893
## 1363 asymmetric 178.8893
## 1364 asymmetric 178.8893
## 1365 asymmetric 178.8893
## 1366 asymmetric 178.8893
## 1367 asymmetric 178.8893
## 1368 asymmetric 178.8893
## 1369 asymmetric 178.8893
## 1370 asymmetric 178.8893
## 1371 asymmetric 178.8893
## 1372 asymmetric 178.8893
## 1373 asymmetric 178.8893
## 1374 asymmetric 178.8893
## 1375 asymmetric 178.8893
## 1376 asymmetric 178.8893
## 1377 asymmetric 178.8893
## 1378 asymmetric 178.8893
## 1379 asymmetric 178.8893
## 1380 asymmetric 178.8893
## 1381 asymmetric 178.8893
## 1382 asymmetric 178.8893
## 1383 asymmetric 178.8893
## 1384 asymmetric 178.8893
## 1385 asymmetric 178.8893
## 1386 asymmetric 178.8893
## 1387 asymmetric 178.8893
## 1388 asymmetric 178.8893
## 1389 asymmetric 178.8893
## 1390 asymmetric 178.8893
## 1391 asymmetric 178.8893
## 1392 asymmetric 178.8893
## 1393 asymmetric 178.8893
## 1394 asymmetric 178.8893
## 1395 asymmetric 178.8893
## 1396 asymmetric 178.8893
## 1397 asymmetric 178.8893
## 1398 asymmetric 178.8893
## 1399 asymmetric 178.8893
## 1400 asymmetric 178.8893
## 1401 asymmetric 178.8893
## 1402 asymmetric 178.8893
## 1403 asymmetric 178.8893
## 1404 asymmetric 178.8893
## 1405 asymmetric 178.8893
## 1406 asymmetric 178.8893
## 1407 asymmetric 178.8893
## 1408 asymmetric 178.8893
## 1409 asymmetric 178.8893
## 1410 asymmetric 178.8893
## 1411 asymmetric 178.8893
## 1412 asymmetric 178.8893
## 1413 asymmetric 178.8893
## 1414 asymmetric 178.8893
## 1415 asymmetric 178.8893
## 1416 asymmetric 178.8893
## 1417 asymmetric 178.8893
## 1418 asymmetric 178.8893
## 1419 asymmetric 178.8893
## 1420 asymmetric 178.8893
## 1421 asymmetric 178.8893
## 1422 asymmetric 178.8893
## 1423 asymmetric 178.8893
## 1424 asymmetric 178.8893
## 1425 asymmetric 178.8893
## 1426 asymmetric 178.8893
## 1427 asymmetric 178.8893
## 1428 asymmetric 178.8893
## 1429 asymmetric 178.8893
## 1430 asymmetric 178.8893
## 1431 asymmetric 178.8893
## 1432 asymmetric 178.8893
## 1433 asymmetric 178.8893
## 1434 asymmetric 178.8893
## 1435 asymmetric 178.8893
## 1436 asymmetric 178.8893
## 1437 asymmetric 178.8893
## 1438 asymmetric 178.8893
## 1439 asymmetric 178.8893
## 1440 asymmetric 178.8893
## 1441 asymmetric 178.8893
## 1442 asymmetric 178.8893
## 1443 asymmetric 178.8893
## 1444 asymmetric 178.8893
## 1445 asymmetric 178.8893
## 1446 asymmetric 178.8893
## 1447 asymmetric 178.8893
## 1448 asymmetric 178.8893
## 1449 asymmetric 178.8893
## 1450 asymmetric 178.8893
## 1451 asymmetric 178.8893
## 1452 asymmetric 178.8893
## 1453 asymmetric 178.8893
## 1454 asymmetric 178.8893
## 1455 asymmetric 178.8893
## 1456 asymmetric 178.8893
## 1457 asymmetric 178.8893
## 1458 asymmetric 178.8893
## 1459 asymmetric 178.8893
## 1460 asymmetric 178.8893
## 1461 asymmetric 178.8893
## 1462 asymmetric 178.8893
## 1463 asymmetric 178.8893
## 1464 asymmetric 178.8893
## 1465 asymmetric 178.8893
## 1466 asymmetric 178.8893
## 1467 asymmetric 178.8893
## 1468 asymmetric 178.8893
## 1469 asymmetric 178.8893
## 1470 asymmetric 178.8893
## 1471 asymmetric 178.8893
## 1472 asymmetric 178.8893
## 1473 asymmetric 178.8893
## 1474 asymmetric 178.8893
## 1475 asymmetric 178.8893
## 1476 asymmetric 178.8893
## 1477 asymmetric 178.8893
## 1478 asymmetric 178.8893
## 1479 asymmetric 178.8893
## 1480 asymmetric 178.8893
## 1481 asymmetric 178.8893
## 1482 asymmetric 178.8893
## 1483 asymmetric 178.8893
## 1484 asymmetric 178.8893
## 1485 asymmetric 178.8893
## 1486 asymmetric 178.8893
## 1487 asymmetric 178.8893
## 1488 asymmetric 178.8893
## 1489 asymmetric 178.8893
## 1490 asymmetric 178.8893
## 1491 asymmetric 178.8893
## 1492 asymmetric 178.8893
## 1493 asymmetric 178.8893
## 1494 asymmetric 178.8893
## 1495 asymmetric 178.8893
## 1496 asymmetric 178.8893
## 1497 asymmetric 178.8893
## 1498 asymmetric 178.8893
## 1499 asymmetric 178.8893
## 1500 asymmetric 178.8893
## 1501 asymmetric 178.8893
## 1502 asymmetric 178.8893
## 1503 asymmetric 178.8893
## 1504 asymmetric 178.8893
## 1505 asymmetric 178.8893
## 1506 asymmetric 178.8893
## 1507 asymmetric 178.8893
## 1508 asymmetric 178.8893
## 1509 asymmetric 178.8893
## 1510 asymmetric 178.8893
## 1511 asymmetric 178.8893
## 1512 asymmetric 178.8893
## 1513 asymmetric 178.8893
## 1514 asymmetric 178.8893
## 1515 asymmetric 178.8893
## 1516 asymmetric 178.8893
## 1517 asymmetric 178.8893
## 1518 asymmetric 178.8893
## 1519 asymmetric 178.8893
## 1520 asymmetric 178.8893
## 1521 asymmetric 178.8893
## 1522 asymmetric 178.8893
## 1523 asymmetric 178.8893
## 1524 asymmetric 178.8893
## 1525 asymmetric 178.8893
## 1526 asymmetric 178.8893
## 1527 asymmetric 178.8893
## 1528 asymmetric 178.8893
## 1529 asymmetric 178.8893
## 1530 asymmetric 178.8893
## 1531 asymmetric 178.8893
## 1532 asymmetric 178.8893
## 1533 asymmetric 178.8893
## 1534 asymmetric 178.8893
## 1535 asymmetric 178.8893
## 1536 asymmetric 178.8893
## 1537 asymmetric 110.3085
## 1538 asymmetric 110.3085
## 1539 asymmetric 110.3085
## 1540 asymmetric 110.3085
## 1541 asymmetric 110.3085
## 1542 asymmetric 110.3085
## 1543 asymmetric 110.3085
## 1544 asymmetric 110.3085
## 1545 asymmetric 110.3085
## 1546 asymmetric 110.3085
## 1547 asymmetric 110.3085
## 1548 asymmetric 110.3085
## 1549 asymmetric 110.3085
## 1550 asymmetric 110.3085
## 1551 asymmetric 110.3085
## 1552 asymmetric 110.3085
## 1553 asymmetric 110.3085
## 1554 asymmetric 110.3085
## 1555 asymmetric 110.3085
## 1556 asymmetric 110.3085
## 1557 asymmetric 110.3085
## 1558 asymmetric 110.3085
## 1559 asymmetric 110.3085
## 1560 asymmetric 110.3085
## 1561 asymmetric 110.3085
## 1562 asymmetric 110.3085
## 1563 asymmetric 110.3085
## 1564 asymmetric 110.3085
## 1565 asymmetric 110.3085
## 1566 asymmetric 110.3085
## 1567 asymmetric 110.3085
## 1568 asymmetric 110.3085
## 1569 asymmetric 110.3085
## 1570 asymmetric 110.3085
## 1571 asymmetric 110.3085
## 1572 asymmetric 110.3085
## 1573 asymmetric 110.3085
## 1574 asymmetric 110.3085
## 1575 asymmetric 110.3085
## 1576 asymmetric 110.3085
## 1577 asymmetric 110.3085
## 1578 asymmetric 110.3085
## 1579 asymmetric 110.3085
## 1580 asymmetric 110.3085
## 1581 asymmetric 110.3085
## 1582 asymmetric 110.3085
## 1583 asymmetric 110.3085
## 1584 asymmetric 110.3085
## 1585 asymmetric 110.3085
## 1586 asymmetric 110.3085
## 1587 asymmetric 110.3085
## 1588 asymmetric 110.3085
## 1589 asymmetric 110.3085
## 1590 asymmetric 110.3085
## 1591 asymmetric 110.3085
## 1592 asymmetric 110.3085
## 1593 asymmetric 110.3085
## 1594 asymmetric 110.3085
## 1595 asymmetric 110.3085
## 1596 asymmetric 110.3085
## 1597 asymmetric 110.3085
## 1598 asymmetric 110.3085
## 1599 asymmetric 110.3085
## 1600 asymmetric 110.3085
## 1601 asymmetric 110.3085
## 1602 asymmetric 110.3085
## 1603 asymmetric 110.3085
## 1604 asymmetric 110.3085
## 1605 asymmetric 110.3085
## 1606 asymmetric 110.3085
## 1607 asymmetric 110.3085
## 1608 asymmetric 110.3085
## 1609 asymmetric 110.3085
## 1610 asymmetric 110.3085
## 1611 asymmetric 110.3085
## 1612 asymmetric 110.3085
## 1613 asymmetric 110.3085
## 1614 asymmetric 110.3085
## 1615 asymmetric 110.3085
## 1616 asymmetric 110.3085
## 1617 asymmetric 110.3085
## 1618 asymmetric 110.3085
## 1619 asymmetric 110.3085
## 1620 asymmetric 110.3085
## 1621 asymmetric 110.3085
## 1622 asymmetric 110.3085
## 1623 asymmetric 110.3085
## 1624 asymmetric 110.3085
## 1625 asymmetric 110.3085
## 1626 asymmetric 110.3085
## 1627 asymmetric 110.3085
## 1628 asymmetric 110.3085
## 1629 asymmetric 110.3085
## 1630 asymmetric 110.3085
## 1631 asymmetric 110.3085
## 1632 asymmetric 110.3085
## 1633 asymmetric 110.3085
## 1634 asymmetric 110.3085
## 1635 asymmetric 110.3085
## 1636 asymmetric 110.3085
## 1637 asymmetric 110.3085
## 1638 asymmetric 110.3085
## 1639 asymmetric 110.3085
## 1640 asymmetric 110.3085
## 1641 asymmetric 110.3085
## 1642 asymmetric 110.3085
## 1643 asymmetric 110.3085
## 1644 asymmetric 110.3085
## 1645 asymmetric 110.3085
## 1646 asymmetric 110.3085
## 1647 asymmetric 110.3085
## 1648 asymmetric 110.3085
## 1649 asymmetric 110.3085
## 1650 asymmetric 110.3085
## 1651 asymmetric 110.3085
## 1652 asymmetric 110.3085
## 1653 asymmetric 110.3085
## 1654 asymmetric 110.3085
## 1655 asymmetric 110.3085
## 1656 asymmetric 110.3085
## 1657 asymmetric 110.3085
## 1658 asymmetric 110.3085
## 1659 asymmetric 110.3085
## 1660 asymmetric 110.3085
## 1661 asymmetric 110.3085
## 1662 asymmetric 110.3085
## 1663 asymmetric 110.3085
## 1664 asymmetric 110.3085
## 1665 asymmetric 110.3085
## 1666 asymmetric 110.3085
## 1667 asymmetric 110.3085
## 1668 asymmetric 110.3085
## 1669 asymmetric 110.3085
## 1670 asymmetric 110.3085
## 1671 asymmetric 110.3085
## 1672 asymmetric 110.3085
## 1673 asymmetric 110.3085
## 1674 asymmetric 110.3085
## 1675 asymmetric 110.3085
## 1676 asymmetric 110.3085
## 1677 asymmetric 110.3085
## 1678 asymmetric 110.3085
## 1679 asymmetric 110.3085
## 1680 asymmetric 110.3085
## 1681 asymmetric 110.3085
## 1682 asymmetric 110.3085
## 1683 asymmetric 110.3085
## 1684 asymmetric 110.3085
## 1685 asymmetric 110.3085
## 1686 asymmetric 110.3085
## 1687 asymmetric 110.3085
## 1688 asymmetric 110.3085
## 1689 asymmetric 110.3085
## 1690 asymmetric 110.3085
## 1691 asymmetric 110.3085
## 1692 asymmetric 110.3085
## 1693 asymmetric 110.3085
## 1694 asymmetric 110.3085
## 1695 asymmetric 110.3085
## 1696 asymmetric 110.3085
## 1697 asymmetric 110.3085
## 1698 asymmetric 110.3085
## 1699 asymmetric 110.3085
## 1700 asymmetric 110.3085
## 1701 asymmetric 110.3085
## 1702 asymmetric 110.3085
## 1703 asymmetric 110.3085
## 1704 asymmetric 110.3085
## 1705 asymmetric 110.3085
## 1706 asymmetric 110.3085
## 1707 asymmetric 110.3085
## 1708 asymmetric 110.3085
## 1709 asymmetric 110.3085
## 1710 asymmetric 110.3085
## 1711 asymmetric 110.3085
## 1712 asymmetric 110.3085
## 1713 asymmetric 110.3085
## 1714 asymmetric 110.3085
## 1715 asymmetric 110.3085
## 1716 asymmetric 110.3085
## 1717 asymmetric 110.3085
## 1718 asymmetric 110.3085
## 1719 asymmetric 110.3085
## 1720 asymmetric 110.3085
## 1721 asymmetric 110.3085
## 1722 asymmetric 110.3085
## 1723 asymmetric 110.3085
## 1724 asymmetric 110.3085
## 1725 asymmetric 110.3085
## 1726 asymmetric 110.3085
## 1727 asymmetric 110.3085
## 1728 asymmetric 110.3085
## 1729 asymmetric 115.0404
## 1730 asymmetric 115.0404
## 1731 asymmetric 115.0404
## 1732 asymmetric 115.0404
## 1733 asymmetric 115.0404
## 1734 asymmetric 115.0404
## 1735 asymmetric 115.0404
## 1736 asymmetric 115.0404
## 1737 asymmetric 115.0404
## 1738 asymmetric 115.0404
## 1739 asymmetric 115.0404
## 1740 asymmetric 115.0404
## 1741 asymmetric 115.0404
## 1742 asymmetric 115.0404
## 1743 asymmetric 115.0404
## 1744 asymmetric 115.0404
## 1745 asymmetric 115.0404
## 1746 asymmetric 115.0404
## 1747 asymmetric 115.0404
## 1748 asymmetric 115.0404
## 1749 asymmetric 115.0404
## 1750 asymmetric 115.0404
## 1751 asymmetric 115.0404
## 1752 asymmetric 115.0404
## 1753 asymmetric 115.0404
## 1754 asymmetric 115.0404
## 1755 asymmetric 115.0404
## 1756 asymmetric 115.0404
## 1757 asymmetric 115.0404
## 1758 asymmetric 115.0404
## 1759 asymmetric 115.0404
## 1760 asymmetric 115.0404
## 1761 asymmetric 115.0404
## 1762 asymmetric 115.0404
## 1763 asymmetric 115.0404
## 1764 asymmetric 115.0404
## 1765 asymmetric 115.0404
## 1766 asymmetric 115.0404
## 1767 asymmetric 115.0404
## 1768 asymmetric 115.0404
## 1769 asymmetric 115.0404
## 1770 asymmetric 115.0404
## 1771 asymmetric 115.0404
## 1772 asymmetric 115.0404
## 1773 asymmetric 115.0404
## 1774 asymmetric 115.0404
## 1775 asymmetric 115.0404
## 1776 asymmetric 115.0404
## 1777 asymmetric 115.0404
## 1778 asymmetric 115.0404
## 1779 asymmetric 115.0404
## 1780 asymmetric 115.0404
## 1781 asymmetric 115.0404
## 1782 asymmetric 115.0404
## 1783 asymmetric 115.0404
## 1784 asymmetric 115.0404
## 1785 asymmetric 115.0404
## 1786 asymmetric 115.0404
## 1787 asymmetric 115.0404
## 1788 asymmetric 115.0404
## 1789 asymmetric 115.0404
## 1790 asymmetric 115.0404
## 1791 asymmetric 115.0404
## 1792 asymmetric 115.0404
## 1793 asymmetric 115.0404
## 1794 asymmetric 115.0404
## 1795 asymmetric 115.0404
## 1796 asymmetric 115.0404
## 1797 asymmetric 115.0404
## 1798 asymmetric 115.0404
## 1799 asymmetric 115.0404
## 1800 asymmetric 115.0404
## 1801 asymmetric 115.0404
## 1802 asymmetric 115.0404
## 1803 asymmetric 115.0404
## 1804 asymmetric 115.0404
## 1805 asymmetric 115.0404
## 1806 asymmetric 115.0404
## 1807 asymmetric 115.0404
## 1808 asymmetric 115.0404
## 1809 asymmetric 115.0404
## 1810 asymmetric 115.0404
## 1811 asymmetric 115.0404
## 1812 asymmetric 115.0404
## 1813 asymmetric 115.0404
## 1814 asymmetric 115.0404
## 1815 asymmetric 115.0404
## 1816 asymmetric 115.0404
## 1817 asymmetric 115.0404
## 1818 asymmetric 115.0404
## 1819 asymmetric 115.0404
## 1820 asymmetric 115.0404
## 1821 asymmetric 115.0404
## 1822 asymmetric 115.0404
## 1823 asymmetric 115.0404
## 1824 asymmetric 115.0404
## 1825 asymmetric 115.0404
## 1826 asymmetric 115.0404
## 1827 asymmetric 115.0404
## 1828 asymmetric 115.0404
## 1829 asymmetric 115.0404
## 1830 asymmetric 115.0404
## 1831 asymmetric 115.0404
## 1832 asymmetric 115.0404
## 1833 asymmetric 115.0404
## 1834 asymmetric 115.0404
## 1835 asymmetric 115.0404
## 1836 asymmetric 115.0404
## 1837 asymmetric 115.0404
## 1838 asymmetric 115.0404
## 1839 asymmetric 115.0404
## 1840 asymmetric 115.0404
## 1841 asymmetric 115.0404
## 1842 asymmetric 115.0404
## 1843 asymmetric 115.0404
## 1844 asymmetric 115.0404
## 1845 asymmetric 115.0404
## 1846 asymmetric 115.0404
## 1847 asymmetric 115.0404
## 1848 asymmetric 115.0404
## 1849 asymmetric 115.0404
## 1850 asymmetric 115.0404
## 1851 asymmetric 115.0404
## 1852 asymmetric 115.0404
## 1853 asymmetric 115.0404
## 1854 asymmetric 115.0404
## 1855 asymmetric 115.0404
## 1856 asymmetric 115.0404
## 1857 asymmetric 115.0404
## 1858 asymmetric 115.0404
## 1859 asymmetric 115.0404
## 1860 asymmetric 115.0404
## 1861 asymmetric 115.0404
## 1862 asymmetric 115.0404
## 1863 asymmetric 115.0404
## 1864 asymmetric 115.0404
## 1865 asymmetric 115.0404
## 1866 asymmetric 115.0404
## 1867 asymmetric 115.0404
## 1868 asymmetric 115.0404
## 1869 asymmetric 115.0404
## 1870 asymmetric 115.0404
## 1871 asymmetric 115.0404
## 1872 asymmetric 115.0404
## 1873 asymmetric 115.0404
## 1874 asymmetric 115.0404
## 1875 asymmetric 115.0404
## 1876 asymmetric 115.0404
## 1877 asymmetric 115.0404
## 1878 asymmetric 115.0404
## 1879 asymmetric 115.0404
## 1880 asymmetric 115.0404
## 1881 asymmetric 115.0404
## 1882 asymmetric 115.0404
## 1883 asymmetric 115.0404
## 1884 asymmetric 115.0404
## 1885 asymmetric 115.0404
## 1886 asymmetric 115.0404
## 1887 asymmetric 115.0404
## 1888 asymmetric 115.0404
## 1889 asymmetric 115.0404
## 1890 asymmetric 115.0404
## 1891 asymmetric 115.0404
## 1892 asymmetric 115.0404
## 1893 asymmetric 115.0404
## 1894 asymmetric 115.0404
## 1895 asymmetric 115.0404
## 1896 asymmetric 115.0404
## 1897 asymmetric 115.0404
## 1898 asymmetric 115.0404
## 1899 asymmetric 115.0404
## 1900 asymmetric 115.0404
## 1901 asymmetric 115.0404
## 1902 asymmetric 115.0404
## 1903 asymmetric 115.0404
## 1904 asymmetric 115.0404
## 1905 asymmetric 115.0404
## 1906 asymmetric 115.0404
## 1907 asymmetric 115.0404
## 1908 asymmetric 115.0404
## 1909 asymmetric 115.0404
## 1910 asymmetric 115.0404
## 1911 asymmetric 115.0404
## 1912 asymmetric 115.0404
## 1913 asymmetric 115.0404
## 1914 asymmetric 115.0404
## 1915 asymmetric 115.0404
## 1916 asymmetric 115.0404
## 1917 asymmetric 115.0404
## 1918 asymmetric 115.0404
## 1919 asymmetric 115.0404
## 1920 asymmetric 115.0404
## 1921 asymmetric 151.3969
## 1922 asymmetric 151.3969
## 1923 asymmetric 151.3969
## 1924 asymmetric 151.3969
## 1925 asymmetric 151.3969
## 1926 asymmetric 151.3969
## 1927 asymmetric 151.3969
## 1928 asymmetric 151.3969
## 1929 asymmetric 151.3969
## 1930 asymmetric 151.3969
## 1931 asymmetric 151.3969
## 1932 asymmetric 151.3969
## 1933 asymmetric 151.3969
## 1934 asymmetric 151.3969
## 1935 asymmetric 151.3969
## 1936 asymmetric 151.3969
## 1937 asymmetric 151.3969
## 1938 asymmetric 151.3969
## 1939 asymmetric 151.3969
## 1940 asymmetric 151.3969
## 1941 asymmetric 151.3969
## 1942 asymmetric 151.3969
## 1943 asymmetric 151.3969
## 1944 asymmetric 151.3969
## 1945 asymmetric 151.3969
## 1946 asymmetric 151.3969
## 1947 asymmetric 151.3969
## 1948 asymmetric 151.3969
## 1949 asymmetric 151.3969
## 1950 asymmetric 151.3969
## 1951 asymmetric 151.3969
## 1952 asymmetric 151.3969
## 1953 asymmetric 151.3969
## 1954 asymmetric 151.3969
## 1955 asymmetric 151.3969
## 1956 asymmetric 151.3969
## 1957 asymmetric 151.3969
## 1958 asymmetric 151.3969
## 1959 asymmetric 151.3969
## 1960 asymmetric 151.3969
## 1961 asymmetric 151.3969
## 1962 asymmetric 151.3969
## 1963 asymmetric 151.3969
## 1964 asymmetric 151.3969
## 1965 asymmetric 151.3969
## 1966 asymmetric 151.3969
## 1967 asymmetric 151.3969
## 1968 asymmetric 151.3969
## 1969 asymmetric 151.3969
## 1970 asymmetric 151.3969
## 1971 asymmetric 151.3969
## 1972 asymmetric 151.3969
## 1973 asymmetric 151.3969
## 1974 asymmetric 151.3969
## 1975 asymmetric 151.3969
## 1976 asymmetric 151.3969
## 1977 asymmetric 151.3969
## 1978 asymmetric 151.3969
## 1979 asymmetric 151.3969
## 1980 asymmetric 151.3969
## 1981 asymmetric 151.3969
## 1982 asymmetric 151.3969
## 1983 asymmetric 151.3969
## 1984 asymmetric 151.3969
## 1985 asymmetric 151.3969
## 1986 asymmetric 151.3969
## 1987 asymmetric 151.3969
## 1988 asymmetric 151.3969
## 1989 asymmetric 151.3969
## 1990 asymmetric 151.3969
## 1991 asymmetric 151.3969
## 1992 asymmetric 151.3969
## 1993 asymmetric 151.3969
## 1994 asymmetric 151.3969
## 1995 asymmetric 151.3969
## 1996 asymmetric 151.3969
## 1997 asymmetric 151.3969
## 1998 asymmetric 151.3969
## 1999 asymmetric 151.3969
## 2000 asymmetric 151.3969
## 2001 asymmetric 151.3969
## 2002 asymmetric 151.3969
## 2003 asymmetric 151.3969
## 2004 asymmetric 151.3969
## 2005 asymmetric 151.3969
## 2006 asymmetric 151.3969
## 2007 asymmetric 151.3969
## 2008 asymmetric 151.3969
## 2009 asymmetric 151.3969
## 2010 asymmetric 151.3969
## 2011 asymmetric 151.3969
## 2012 asymmetric 151.3969
## 2013 asymmetric 151.3969
## 2014 asymmetric 151.3969
## 2015 asymmetric 151.3969
## 2016 asymmetric 151.3969
## 2017 asymmetric 151.3969
## 2018 asymmetric 151.3969
## 2019 asymmetric 151.3969
## 2020 asymmetric 151.3969
## 2021 asymmetric 151.3969
## 2022 asymmetric 151.3969
## 2023 asymmetric 151.3969
## 2024 asymmetric 151.3969
## 2025 asymmetric 151.3969
## 2026 asymmetric 151.3969
## 2027 asymmetric 151.3969
## 2028 asymmetric 151.3969
## 2029 asymmetric 151.3969
## 2030 asymmetric 151.3969
## 2031 asymmetric 151.3969
## 2032 asymmetric 151.3969
## 2033 asymmetric 151.3969
## 2034 asymmetric 151.3969
## 2035 asymmetric 151.3969
## 2036 asymmetric 151.3969
## 2037 asymmetric 151.3969
## 2038 asymmetric 151.3969
## 2039 asymmetric 151.3969
## 2040 asymmetric 151.3969
## 2041 asymmetric 151.3969
## 2042 asymmetric 151.3969
## 2043 asymmetric 151.3969
## 2044 asymmetric 151.3969
## 2045 asymmetric 151.3969
## 2046 asymmetric 151.3969
## 2047 asymmetric 151.3969
## 2048 asymmetric 151.3969
## 2049 asymmetric 151.3969
## 2050 asymmetric 151.3969
## 2051 asymmetric 151.3969
## 2052 asymmetric 151.3969
## 2053 asymmetric 151.3969
## 2054 asymmetric 151.3969
## 2055 asymmetric 151.3969
## 2056 asymmetric 151.3969
## 2057 asymmetric 151.3969
## 2058 asymmetric 151.3969
## 2059 asymmetric 151.3969
## 2060 asymmetric 151.3969
## 2061 asymmetric 151.3969
## 2062 asymmetric 151.3969
## 2063 asymmetric 151.3969
## 2064 asymmetric 151.3969
## 2065 asymmetric 151.3969
## 2066 asymmetric 151.3969
## 2067 asymmetric 151.3969
## 2068 asymmetric 151.3969
## 2069 asymmetric 151.3969
## 2070 asymmetric 151.3969
## 2071 asymmetric 151.3969
## 2072 asymmetric 151.3969
## 2073 asymmetric 151.3969
## 2074 asymmetric 151.3969
## 2075 asymmetric 151.3969
## 2076 asymmetric 151.3969
## 2077 asymmetric 151.3969
## 2078 asymmetric 151.3969
## 2079 asymmetric 151.3969
## 2080 asymmetric 151.3969
## 2081 asymmetric 151.3969
## 2082 asymmetric 151.3969
## 2083 asymmetric 151.3969
## 2084 asymmetric 151.3969
## 2085 asymmetric 151.3969
## 2086 asymmetric 151.3969
## 2087 asymmetric 151.3969
## 2088 asymmetric 151.3969
## 2089 asymmetric 151.3969
## 2090 asymmetric 151.3969
## 2091 asymmetric 151.3969
## 2092 asymmetric 151.3969
## 2093 asymmetric 151.3969
## 2094 asymmetric 151.3969
## 2095 asymmetric 151.3969
## 2096 asymmetric 151.3969
## 2097 asymmetric 151.3969
## 2098 asymmetric 151.3969
## 2099 asymmetric 151.3969
## 2100 asymmetric 151.3969
## 2101 asymmetric 151.3969
## 2102 asymmetric 151.3969
## 2103 asymmetric 151.3969
## 2104 asymmetric 151.3969
## 2105 asymmetric 151.3969
## 2106 asymmetric 151.3969
## 2107 asymmetric 151.3969
## 2108 asymmetric 151.3969
## 2109 asymmetric 151.3969
## 2110 asymmetric 151.3969
## 2111 asymmetric 151.3969
## 2112 asymmetric 151.3969
## 2113 asymmetric 228.2688
## 2114 asymmetric 228.2688
## 2115 asymmetric 228.2688
## 2116 asymmetric 228.2688
## 2117 asymmetric 228.2688
## 2118 asymmetric 228.2688
## 2119 asymmetric 228.2688
## 2120 asymmetric 228.2688
## 2121 asymmetric 228.2688
## 2122 asymmetric 228.2688
## 2123 asymmetric 228.2688
## 2124 asymmetric 228.2688
## 2125 asymmetric 228.2688
## 2126 asymmetric 228.2688
## 2127 asymmetric 228.2688
## 2128 asymmetric 228.2688
## 2129 asymmetric 228.2688
## 2130 asymmetric 228.2688
## 2131 asymmetric 228.2688
## 2132 asymmetric 228.2688
## 2133 asymmetric 228.2688
## 2134 asymmetric 228.2688
## 2135 asymmetric 228.2688
## 2136 asymmetric 228.2688
## 2137 asymmetric 228.2688
## 2138 asymmetric 228.2688
## 2139 asymmetric 228.2688
## 2140 asymmetric 228.2688
## 2141 asymmetric 228.2688
## 2142 asymmetric 228.2688
## 2143 asymmetric 228.2688
## 2144 asymmetric 228.2688
## 2145 asymmetric 228.2688
## 2146 asymmetric 228.2688
## 2147 asymmetric 228.2688
## 2148 asymmetric 228.2688
## 2149 asymmetric 228.2688
## 2150 asymmetric 228.2688
## 2151 asymmetric 228.2688
## 2152 asymmetric 228.2688
## 2153 asymmetric 228.2688
## 2154 asymmetric 228.2688
## 2155 asymmetric 228.2688
## 2156 asymmetric 228.2688
## 2157 asymmetric 228.2688
## 2158 asymmetric 228.2688
## 2159 asymmetric 228.2688
## 2160 asymmetric 228.2688
## 2161 asymmetric 228.2688
## 2162 asymmetric 228.2688
## 2163 asymmetric 228.2688
## 2164 asymmetric 228.2688
## 2165 asymmetric 228.2688
## 2166 asymmetric 228.2688
## 2167 asymmetric 228.2688
## 2168 asymmetric 228.2688
## 2169 asymmetric 228.2688
## 2170 asymmetric 228.2688
## 2171 asymmetric 228.2688
## 2172 asymmetric 228.2688
## 2173 asymmetric 228.2688
## 2174 asymmetric 228.2688
## 2175 asymmetric 228.2688
## 2176 asymmetric 228.2688
## 2177 asymmetric 228.2688
## 2178 asymmetric 228.2688
## 2179 asymmetric 228.2688
## 2180 asymmetric 228.2688
## 2181 asymmetric 228.2688
## 2182 asymmetric 228.2688
## 2183 asymmetric 228.2688
## 2184 asymmetric 228.2688
## 2185 asymmetric 228.2688
## 2186 asymmetric 228.2688
## 2187 asymmetric 228.2688
## 2188 asymmetric 228.2688
## 2189 asymmetric 228.2688
## 2190 asymmetric 228.2688
## 2191 asymmetric 228.2688
## 2192 asymmetric 228.2688
## 2193 asymmetric 228.2688
## 2194 asymmetric 228.2688
## 2195 asymmetric 228.2688
## 2196 asymmetric 228.2688
## 2197 asymmetric 228.2688
## 2198 asymmetric 228.2688
## 2199 asymmetric 228.2688
## 2200 asymmetric 228.2688
## 2201 asymmetric 228.2688
## 2202 asymmetric 228.2688
## 2203 asymmetric 228.2688
## 2204 asymmetric 228.2688
## 2205 asymmetric 228.2688
## 2206 asymmetric 228.2688
## 2207 asymmetric 228.2688
## 2208 asymmetric 228.2688
## 2209 asymmetric 228.2688
## 2210 asymmetric 228.2688
## 2211 asymmetric 228.2688
## 2212 asymmetric 228.2688
## 2213 asymmetric 228.2688
## 2214 asymmetric 228.2688
## 2215 asymmetric 228.2688
## 2216 asymmetric 228.2688
## 2217 asymmetric 228.2688
## 2218 asymmetric 228.2688
## 2219 asymmetric 228.2688
## 2220 asymmetric 228.2688
## 2221 asymmetric 228.2688
## 2222 asymmetric 228.2688
## 2223 asymmetric 228.2688
## 2224 asymmetric 228.2688
## 2225 asymmetric 228.2688
## 2226 asymmetric 228.2688
## 2227 asymmetric 228.2688
## 2228 asymmetric 228.2688
## 2229 asymmetric 228.2688
## 2230 asymmetric 228.2688
## 2231 asymmetric 228.2688
## 2232 asymmetric 228.2688
## 2233 asymmetric 228.2688
## 2234 asymmetric 228.2688
## 2235 asymmetric 228.2688
## 2236 asymmetric 228.2688
## 2237 asymmetric 228.2688
## 2238 asymmetric 228.2688
## 2239 asymmetric 228.2688
## 2240 asymmetric 228.2688
## 2241 asymmetric 228.2688
## 2242 asymmetric 228.2688
## 2243 asymmetric 228.2688
## 2244 asymmetric 228.2688
## 2245 asymmetric 228.2688
## 2246 asymmetric 228.2688
## 2247 asymmetric 228.2688
## 2248 asymmetric 228.2688
## 2249 asymmetric 228.2688
## 2250 asymmetric 228.2688
## 2251 asymmetric 228.2688
## 2252 asymmetric 228.2688
## 2253 asymmetric 228.2688
## 2254 asymmetric 228.2688
## 2255 asymmetric 228.2688
## 2256 asymmetric 228.2688
## 2257 asymmetric 228.2688
## 2258 asymmetric 228.2688
## 2259 asymmetric 228.2688
## 2260 asymmetric 228.2688
## 2261 asymmetric 228.2688
## 2262 asymmetric 228.2688
## 2263 asymmetric 228.2688
## 2264 asymmetric 228.2688
## 2265 asymmetric 228.2688
## 2266 asymmetric 228.2688
## 2267 asymmetric 228.2688
## 2268 asymmetric 228.2688
## 2269 asymmetric 228.2688
## 2270 asymmetric 228.2688
## 2271 asymmetric 228.2688
## 2272 asymmetric 228.2688
## 2273 asymmetric 228.2688
## 2274 asymmetric 228.2688
## 2275 asymmetric 228.2688
## 2276 asymmetric 228.2688
## 2277 asymmetric 228.2688
## 2278 asymmetric 228.2688
## 2279 asymmetric 228.2688
## 2280 asymmetric 228.2688
## 2281 asymmetric 228.2688
## 2282 asymmetric 228.2688
## 2283 asymmetric 228.2688
## 2284 asymmetric 228.2688
## 2285 asymmetric 228.2688
## 2286 asymmetric 228.2688
## 2287 asymmetric 228.2688
## 2288 asymmetric 228.2688
## 2289 asymmetric 228.2688
## 2290 asymmetric 228.2688
## 2291 asymmetric 228.2688
## 2292 asymmetric 228.2688
## 2293 asymmetric 228.2688
## 2294 asymmetric 228.2688
## 2295 asymmetric 228.2688
## 2296 asymmetric 228.2688
## 2297 asymmetric 228.2688
## 2298 asymmetric 228.2688
## 2299 asymmetric 228.2688
## 2300 asymmetric 228.2688
## 2301 asymmetric 228.2688
## 2302 asymmetric 228.2688
## 2303 asymmetric 228.2688
## 2304 asymmetric 228.2688
## 2305 asymmetric 182.9847
## 2306 asymmetric 182.9847
## 2307 asymmetric 182.9847
## 2308 asymmetric 182.9847
## 2309 asymmetric 182.9847
## 2310 asymmetric 182.9847
## 2311 asymmetric 182.9847
## 2312 asymmetric 182.9847
## 2313 asymmetric 182.9847
## 2314 asymmetric 182.9847
## 2315 asymmetric 182.9847
## 2316 asymmetric 182.9847
## 2317 asymmetric 182.9847
## 2318 asymmetric 182.9847
## 2319 asymmetric 182.9847
## 2320 asymmetric 182.9847
## 2321 asymmetric 182.9847
## 2322 asymmetric 182.9847
## 2323 asymmetric 182.9847
## 2324 asymmetric 182.9847
## 2325 asymmetric 182.9847
## 2326 asymmetric 182.9847
## 2327 asymmetric 182.9847
## 2328 asymmetric 182.9847
## 2329 asymmetric 182.9847
## 2330 asymmetric 182.9847
## 2331 asymmetric 182.9847
## 2332 asymmetric 182.9847
## 2333 asymmetric 182.9847
## 2334 asymmetric 182.9847
## 2335 asymmetric 182.9847
## 2336 asymmetric 182.9847
## 2337 asymmetric 182.9847
## 2338 asymmetric 182.9847
## 2339 asymmetric 182.9847
## 2340 asymmetric 182.9847
## 2341 asymmetric 182.9847
## 2342 asymmetric 182.9847
## 2343 asymmetric 182.9847
## 2344 asymmetric 182.9847
## 2345 asymmetric 182.9847
## 2346 asymmetric 182.9847
## 2347 asymmetric 182.9847
## 2348 asymmetric 182.9847
## 2349 asymmetric 182.9847
## 2350 asymmetric 182.9847
## 2351 asymmetric 182.9847
## 2352 asymmetric 182.9847
## 2353 asymmetric 182.9847
## 2354 asymmetric 182.9847
## 2355 asymmetric 182.9847
## 2356 asymmetric 182.9847
## 2357 asymmetric 182.9847
## 2358 asymmetric 182.9847
## 2359 asymmetric 182.9847
## 2360 asymmetric 182.9847
## 2361 asymmetric 182.9847
## 2362 asymmetric 182.9847
## 2363 asymmetric 182.9847
## 2364 asymmetric 182.9847
## 2365 asymmetric 182.9847
## 2366 asymmetric 182.9847
## 2367 asymmetric 182.9847
## 2368 asymmetric 182.9847
## 2369 asymmetric 182.9847
## 2370 asymmetric 182.9847
## 2371 asymmetric 182.9847
## 2372 asymmetric 182.9847
## 2373 asymmetric 182.9847
## 2374 asymmetric 182.9847
## 2375 asymmetric 182.9847
## 2376 asymmetric 182.9847
## 2377 asymmetric 182.9847
## 2378 asymmetric 182.9847
## 2379 asymmetric 182.9847
## 2380 asymmetric 182.9847
## 2381 asymmetric 182.9847
## 2382 asymmetric 182.9847
## 2383 asymmetric 182.9847
## 2384 asymmetric 182.9847
## 2385 asymmetric 182.9847
## 2386 asymmetric 182.9847
## 2387 asymmetric 182.9847
## 2388 asymmetric 182.9847
## 2389 asymmetric 182.9847
## 2390 asymmetric 182.9847
## 2391 asymmetric 182.9847
## 2392 asymmetric 182.9847
## 2393 asymmetric 182.9847
## 2394 asymmetric 182.9847
## 2395 asymmetric 182.9847
## 2396 asymmetric 182.9847
## 2397 asymmetric 182.9847
## 2398 asymmetric 182.9847
## 2399 asymmetric 182.9847
## 2400 asymmetric 182.9847
## 2401 asymmetric 182.9847
## 2402 asymmetric 182.9847
## 2403 asymmetric 182.9847
## 2404 asymmetric 182.9847
## 2405 asymmetric 182.9847
## 2406 asymmetric 182.9847
## 2407 asymmetric 182.9847
## 2408 asymmetric 182.9847
## 2409 asymmetric 182.9847
## 2410 asymmetric 182.9847
## 2411 asymmetric 182.9847
## 2412 asymmetric 182.9847
## 2413 asymmetric 182.9847
## 2414 asymmetric 182.9847
## 2415 asymmetric 182.9847
## 2416 asymmetric 182.9847
## 2417 asymmetric 182.9847
## 2418 asymmetric 182.9847
## 2419 asymmetric 182.9847
## 2420 asymmetric 182.9847
## 2421 asymmetric 182.9847
## 2422 asymmetric 182.9847
## 2423 asymmetric 182.9847
## 2424 asymmetric 182.9847
## 2425 asymmetric 182.9847
## 2426 asymmetric 182.9847
## 2427 asymmetric 182.9847
## 2428 asymmetric 182.9847
## 2429 asymmetric 182.9847
## 2430 asymmetric 182.9847
## 2431 asymmetric 182.9847
## 2432 asymmetric 182.9847
## 2433 asymmetric 182.9847
## 2434 asymmetric 182.9847
## 2435 asymmetric 182.9847
## 2436 asymmetric 182.9847
## 2437 asymmetric 182.9847
## 2438 asymmetric 182.9847
## 2439 asymmetric 182.9847
## 2440 asymmetric 182.9847
## 2441 asymmetric 182.9847
## 2442 asymmetric 182.9847
## 2443 asymmetric 182.9847
## 2444 asymmetric 182.9847
## 2445 asymmetric 182.9847
## 2446 asymmetric 182.9847
## 2447 asymmetric 182.9847
## 2448 asymmetric 182.9847
## 2449 asymmetric 182.9847
## 2450 asymmetric 182.9847
## 2451 asymmetric 182.9847
## 2452 asymmetric 182.9847
## 2453 asymmetric 182.9847
## 2454 asymmetric 182.9847
## 2455 asymmetric 182.9847
## 2456 asymmetric 182.9847
## 2457 asymmetric 182.9847
## 2458 asymmetric 182.9847
## 2459 asymmetric 182.9847
## 2460 asymmetric 182.9847
## 2461 asymmetric 182.9847
## 2462 asymmetric 182.9847
## 2463 asymmetric 182.9847
## 2464 asymmetric 182.9847
## 2465 asymmetric 182.9847
## 2466 asymmetric 182.9847
## 2467 asymmetric 182.9847
## 2468 asymmetric 182.9847
## 2469 asymmetric 182.9847
## 2470 asymmetric 182.9847
## 2471 asymmetric 182.9847
## 2472 asymmetric 182.9847
## 2473 asymmetric 182.9847
## 2474 asymmetric 182.9847
## 2475 asymmetric 182.9847
## 2476 asymmetric 182.9847
## 2477 asymmetric 182.9847
## 2478 asymmetric 182.9847
## 2479 asymmetric 182.9847
## 2480 asymmetric 182.9847
## 2481 asymmetric 182.9847
## 2482 asymmetric 182.9847
## 2483 asymmetric 182.9847
## 2484 asymmetric 182.9847
## 2485 asymmetric 182.9847
## 2486 asymmetric 182.9847
## 2487 asymmetric 182.9847
## 2488 asymmetric 182.9847
## 2489 asymmetric 182.9847
## 2490 asymmetric 182.9847
## 2491 asymmetric 182.9847
## 2492 asymmetric 182.9847
## 2493 asymmetric 182.9847
## 2494 asymmetric 182.9847
## 2495 asymmetric 182.9847
## 2496 asymmetric 182.9847
## 2497 asymmetric 114.4039
## 2498 asymmetric 114.4039
## 2499 asymmetric 114.4039
## 2500 asymmetric 114.4039
## 2501 asymmetric 114.4039
## 2502 asymmetric 114.4039
## 2503 asymmetric 114.4039
## 2504 asymmetric 114.4039
## 2505 asymmetric 114.4039
## 2506 asymmetric 114.4039
## 2507 asymmetric 114.4039
## 2508 asymmetric 114.4039
## 2509 asymmetric 114.4039
## 2510 asymmetric 114.4039
## 2511 asymmetric 114.4039
## 2512 asymmetric 114.4039
## 2513 asymmetric 114.4039
## 2514 asymmetric 114.4039
## 2515 asymmetric 114.4039
## 2516 asymmetric 114.4039
## 2517 asymmetric 114.4039
## 2518 asymmetric 114.4039
## 2519 asymmetric 114.4039
## 2520 asymmetric 114.4039
## 2521 asymmetric 114.4039
## 2522 asymmetric 114.4039
## 2523 asymmetric 114.4039
## 2524 asymmetric 114.4039
## 2525 asymmetric 114.4039
## 2526 asymmetric 114.4039
## 2527 asymmetric 114.4039
## 2528 asymmetric 114.4039
## 2529 asymmetric 114.4039
## 2530 asymmetric 114.4039
## 2531 asymmetric 114.4039
## 2532 asymmetric 114.4039
## 2533 asymmetric 114.4039
## 2534 asymmetric 114.4039
## 2535 asymmetric 114.4039
## 2536 asymmetric 114.4039
## 2537 asymmetric 114.4039
## 2538 asymmetric 114.4039
## 2539 asymmetric 114.4039
## 2540 asymmetric 114.4039
## 2541 asymmetric 114.4039
## 2542 asymmetric 114.4039
## 2543 asymmetric 114.4039
## 2544 asymmetric 114.4039
## 2545 asymmetric 114.4039
## 2546 asymmetric 114.4039
## 2547 asymmetric 114.4039
## 2548 asymmetric 114.4039
## 2549 asymmetric 114.4039
## 2550 asymmetric 114.4039
## 2551 asymmetric 114.4039
## 2552 asymmetric 114.4039
## 2553 asymmetric 114.4039
## 2554 asymmetric 114.4039
## 2555 asymmetric 114.4039
## 2556 asymmetric 114.4039
## 2557 asymmetric 114.4039
## 2558 asymmetric 114.4039
## 2559 asymmetric 114.4039
## 2560 asymmetric 114.4039
## 2561 asymmetric 114.4039
## 2562 asymmetric 114.4039
## 2563 asymmetric 114.4039
## 2564 asymmetric 114.4039
## 2565 asymmetric 114.4039
## 2566 asymmetric 114.4039
## 2567 asymmetric 114.4039
## 2568 asymmetric 114.4039
## 2569 asymmetric 114.4039
## 2570 asymmetric 114.4039
## 2571 asymmetric 114.4039
## 2572 asymmetric 114.4039
## 2573 asymmetric 114.4039
## 2574 asymmetric 114.4039
## 2575 asymmetric 114.4039
## 2576 asymmetric 114.4039
## 2577 asymmetric 114.4039
## 2578 asymmetric 114.4039
## 2579 asymmetric 114.4039
## 2580 asymmetric 114.4039
## 2581 asymmetric 114.4039
## 2582 asymmetric 114.4039
## 2583 asymmetric 114.4039
## 2584 asymmetric 114.4039
## 2585 asymmetric 114.4039
## 2586 asymmetric 114.4039
## 2587 asymmetric 114.4039
## 2588 asymmetric 114.4039
## 2589 asymmetric 114.4039
## 2590 asymmetric 114.4039
## 2591 asymmetric 114.4039
## 2592 asymmetric 114.4039
## 2593 asymmetric 114.4039
## 2594 asymmetric 114.4039
## 2595 asymmetric 114.4039
## 2596 asymmetric 114.4039
## 2597 asymmetric 114.4039
## 2598 asymmetric 114.4039
## 2599 asymmetric 114.4039
## 2600 asymmetric 114.4039
## 2601 asymmetric 114.4039
## 2602 asymmetric 114.4039
## 2603 asymmetric 114.4039
## 2604 asymmetric 114.4039
## 2605 asymmetric 114.4039
## 2606 asymmetric 114.4039
## 2607 asymmetric 114.4039
## 2608 asymmetric 114.4039
## 2609 asymmetric 114.4039
## 2610 asymmetric 114.4039
## 2611 asymmetric 114.4039
## 2612 asymmetric 114.4039
## 2613 asymmetric 114.4039
## 2614 asymmetric 114.4039
## 2615 asymmetric 114.4039
## 2616 asymmetric 114.4039
## 2617 asymmetric 114.4039
## 2618 asymmetric 114.4039
## 2619 asymmetric 114.4039
## 2620 asymmetric 114.4039
## 2621 asymmetric 114.4039
## 2622 asymmetric 114.4039
## 2623 asymmetric 114.4039
## 2624 asymmetric 114.4039
## 2625 asymmetric 114.4039
## 2626 asymmetric 114.4039
## 2627 asymmetric 114.4039
## 2628 asymmetric 114.4039
## 2629 asymmetric 114.4039
## 2630 asymmetric 114.4039
## 2631 asymmetric 114.4039
## baseline_jaccard_index baseline_bray_curtis baseline_beta_spatial_turnover
## 1 0.3797327 0.2343643 0.1428571
## 2 0.3797327 0.2343643 0.1428571
## 3 0.3797327 0.2343643 0.1428571
## 4 0.3797327 0.2343643 0.1428571
## 5 0.3797327 0.2343643 0.1428571
## 6 0.3797327 0.2343643 0.1428571
## 7 0.3797327 0.2343643 0.1428571
## 8 0.3797327 0.2343643 0.1428571
## 9 0.3797327 0.2343643 0.1428571
## 10 0.3797327 0.2343643 0.1428571
## 11 0.3797327 0.2343643 0.1428571
## 12 0.3797327 0.2343643 0.1428571
## 13 0.3797327 0.2343643 0.1428571
## 14 0.3797327 0.2343643 0.1428571
## 15 0.3797327 0.2343643 0.1428571
## 16 0.3797327 0.2343643 0.1428571
## 17 0.3797327 0.2343643 0.1428571
## 18 0.3797327 0.2343643 0.1428571
## 19 0.3797327 0.2343643 0.1428571
## 20 0.3797327 0.2343643 0.1428571
## 21 0.3797327 0.2343643 0.1428571
## 22 0.3797327 0.2343643 0.1428571
## 23 0.3797327 0.2343643 0.1428571
## 24 0.3797327 0.2343643 0.1428571
## 25 0.3797327 0.2343643 0.1428571
## 26 0.3797327 0.2343643 0.1428571
## 27 0.3797327 0.2343643 0.1428571
## 28 0.3797327 0.2343643 0.1428571
## 29 0.3797327 0.2343643 0.1428571
## 30 0.3797327 0.2343643 0.1428571
## 31 0.3797327 0.2343643 0.1428571
## 32 0.3797327 0.2343643 0.1428571
## 33 0.3797327 0.2343643 0.1428571
## 34 0.3797327 0.2343643 0.1428571
## 35 0.3797327 0.2343643 0.1428571
## 36 0.3797327 0.2343643 0.1428571
## 37 0.3797327 0.2343643 0.1428571
## 38 0.3797327 0.2343643 0.1428571
## 39 0.3797327 0.2343643 0.1428571
## 40 0.3797327 0.2343643 0.1428571
## 41 0.3797327 0.2343643 0.1428571
## 42 0.3797327 0.2343643 0.1428571
## 43 0.3797327 0.2343643 0.1428571
## 44 0.3797327 0.2343643 0.1428571
## 45 0.3797327 0.2343643 0.1428571
## 46 0.3797327 0.2343643 0.1428571
## 47 0.3797327 0.2343643 0.1428571
## 48 0.3797327 0.2343643 0.1428571
## 49 0.3797327 0.2343643 0.1428571
## 50 0.3797327 0.2343643 0.1428571
## 51 0.3797327 0.2343643 0.1428571
## 52 0.3797327 0.2343643 0.1428571
## 53 0.3797327 0.2343643 0.1428571
## 54 0.3797327 0.2343643 0.1428571
## 55 0.3797327 0.2343643 0.1428571
## 56 0.3797327 0.2343643 0.1428571
## 57 0.3797327 0.2343643 0.1428571
## 58 0.3797327 0.2343643 0.1428571
## 59 0.3797327 0.2343643 0.1428571
## 60 0.3797327 0.2343643 0.1428571
## 61 0.3797327 0.2343643 0.1428571
## 62 0.3797327 0.2343643 0.1428571
## 63 0.3797327 0.2343643 0.1428571
## 64 0.3797327 0.2343643 0.1428571
## 65 0.3797327 0.2343643 0.1428571
## 66 0.3797327 0.2343643 0.1428571
## 67 0.3797327 0.2343643 0.1428571
## 68 0.3797327 0.2343643 0.1428571
## 69 0.3797327 0.2343643 0.1428571
## 70 0.3797327 0.2343643 0.1428571
## 71 0.3797327 0.2343643 0.1428571
## 72 0.3797327 0.2343643 0.1428571
## 73 0.3797327 0.2343643 0.1428571
## 74 0.3797327 0.2343643 0.1428571
## 75 0.3797327 0.2343643 0.1428571
## 76 0.3797327 0.2343643 0.1428571
## 77 0.3797327 0.2343643 0.1428571
## 78 0.3797327 0.2343643 0.1428571
## 79 0.3797327 0.2343643 0.1428571
## 80 0.3797327 0.2343643 0.1428571
## 81 0.3797327 0.2343643 0.1428571
## 82 0.3797327 0.2343643 0.1428571
## 83 0.3797327 0.2343643 0.1428571
## 84 0.3797327 0.2343643 0.1428571
## 85 0.3797327 0.2343643 0.1428571
## 86 0.3797327 0.2343643 0.1428571
## 87 0.3797327 0.2343643 0.1428571
## 88 0.3797327 0.2343643 0.1428571
## 89 0.3797327 0.2343643 0.1428571
## 90 0.3797327 0.2343643 0.1428571
## 91 0.3797327 0.2343643 0.1428571
## 92 0.3797327 0.2343643 0.1428571
## 93 0.3797327 0.2343643 0.1428571
## 94 0.3797327 0.2343643 0.1428571
## 95 0.3797327 0.2343643 0.1428571
## 96 0.3797327 0.2343643 0.1428571
## 97 0.3797327 0.2343643 0.1428571
## 98 0.3797327 0.2343643 0.1428571
## 99 0.3797327 0.2343643 0.1428571
## 100 0.3797327 0.2343643 0.1428571
## 101 0.3797327 0.2343643 0.1428571
## 102 0.3797327 0.2343643 0.1428571
## 103 0.3797327 0.2343643 0.1428571
## 104 0.3797327 0.2343643 0.1428571
## 105 0.3797327 0.2343643 0.1428571
## 106 0.3797327 0.2343643 0.1428571
## 107 0.3797327 0.2343643 0.1428571
## 108 0.3797327 0.2343643 0.1428571
## 109 0.3797327 0.2343643 0.1428571
## 110 0.3797327 0.2343643 0.1428571
## 111 0.3797327 0.2343643 0.1428571
## 112 0.3797327 0.2343643 0.1428571
## 113 0.3797327 0.2343643 0.1428571
## 114 0.3797327 0.2343643 0.1428571
## 115 0.3797327 0.2343643 0.1428571
## 116 0.3797327 0.2343643 0.1428571
## 117 0.3797327 0.2343643 0.1428571
## 118 0.3797327 0.2343643 0.1428571
## 119 0.3797327 0.2343643 0.1428571
## 120 0.3797327 0.2343643 0.1428571
## 121 0.3797327 0.2343643 0.1428571
## 122 0.3797327 0.2343643 0.1428571
## 123 0.3797327 0.2343643 0.1428571
## 124 0.3797327 0.2343643 0.1428571
## 125 0.3797327 0.2343643 0.1428571
## 126 0.3797327 0.2343643 0.1428571
## 127 0.3797327 0.2343643 0.1428571
## 128 0.3797327 0.2343643 0.1428571
## 129 0.3797327 0.2343643 0.1428571
## 130 0.3797327 0.2343643 0.1428571
## 131 0.3797327 0.2343643 0.1428571
## 132 0.3797327 0.2343643 0.1428571
## 133 0.3797327 0.2343643 0.1428571
## 134 0.3797327 0.2343643 0.1428571
## 135 0.3797327 0.2343643 0.1428571
## 136 0.3797327 0.2343643 0.1428571
## 137 0.3797327 0.2343643 0.1428571
## 138 0.3797327 0.2343643 0.1428571
## 139 0.3797327 0.2343643 0.1428571
## 140 0.3797327 0.2343643 0.1428571
## 141 0.3797327 0.2343643 0.1428571
## 142 0.3797327 0.2343643 0.1428571
## 143 0.3797327 0.2343643 0.1428571
## 144 0.3797327 0.2343643 0.1428571
## 145 0.3797327 0.2343643 0.1428571
## 146 0.3797327 0.2343643 0.1428571
## 147 0.3797327 0.2343643 0.1428571
## 148 0.3797327 0.2343643 0.1428571
## 149 0.3797327 0.2343643 0.1428571
## 150 0.3797327 0.2343643 0.1428571
## 151 0.3797327 0.2343643 0.1428571
## 152 0.3797327 0.2343643 0.1428571
## 153 0.3797327 0.2343643 0.1428571
## 154 0.3797327 0.2343643 0.1428571
## 155 0.3797327 0.2343643 0.1428571
## 156 0.3797327 0.2343643 0.1428571
## 157 0.3797327 0.2343643 0.1428571
## 158 0.3797327 0.2343643 0.1428571
## 159 0.3797327 0.2343643 0.1428571
## 160 0.3797327 0.2343643 0.1428571
## 161 0.3797327 0.2343643 0.1428571
## 162 0.3797327 0.2343643 0.1428571
## 163 0.3797327 0.2343643 0.1428571
## 164 0.3797327 0.2343643 0.1428571
## 165 0.3797327 0.2343643 0.1428571
## 166 0.3797327 0.2343643 0.1428571
## 167 0.3797327 0.2343643 0.1428571
## 168 0.3797327 0.2343643 0.1428571
## 169 0.3797327 0.2343643 0.1428571
## 170 0.3797327 0.2343643 0.1428571
## 171 0.3797327 0.2343643 0.1428571
## 172 0.3797327 0.2343643 0.1428571
## 173 0.3797327 0.2343643 0.1428571
## 174 0.3797327 0.2343643 0.1428571
## 175 0.3797327 0.2343643 0.1428571
## 176 0.3797327 0.2343643 0.1428571
## 177 0.3797327 0.2343643 0.1428571
## 178 0.3797327 0.2343643 0.1428571
## 179 0.3797327 0.2343643 0.1428571
## 180 0.3797327 0.2343643 0.1428571
## 181 0.3797327 0.2343643 0.1428571
## 182 0.3797327 0.2343643 0.1428571
## 183 0.3797327 0.2343643 0.1428571
## 184 0.3797327 0.2343643 0.1428571
## 185 0.3797327 0.2343643 0.1428571
## 186 0.3797327 0.2343643 0.1428571
## 187 0.3797327 0.2343643 0.1428571
## 188 0.3797327 0.2343643 0.1428571
## 189 0.3797327 0.2343643 0.1428571
## 190 0.3797327 0.2343643 0.1428571
## 191 0.3797327 0.2343643 0.1428571
## 192 0.3797327 0.2343643 0.1428571
## 193 0.5863882 0.4148156 0.0000000
## 194 0.5863882 0.4148156 0.0000000
## 195 0.5863882 0.4148156 0.0000000
## 196 0.5863882 0.4148156 0.0000000
## 197 0.5863882 0.4148156 0.0000000
## 198 0.5863882 0.4148156 0.0000000
## 199 0.5863882 0.4148156 0.0000000
## 200 0.5863882 0.4148156 0.0000000
## 201 0.5863882 0.4148156 0.0000000
## 202 0.5863882 0.4148156 0.0000000
## 203 0.5863882 0.4148156 0.0000000
## 204 0.5863882 0.4148156 0.0000000
## 205 0.5863882 0.4148156 0.0000000
## 206 0.5863882 0.4148156 0.0000000
## 207 0.5863882 0.4148156 0.0000000
## 208 0.5863882 0.4148156 0.0000000
## 209 0.5863882 0.4148156 0.0000000
## 210 0.5863882 0.4148156 0.0000000
## 211 0.5863882 0.4148156 0.0000000
## 212 0.5863882 0.4148156 0.0000000
## 213 0.5863882 0.4148156 0.0000000
## 214 0.5863882 0.4148156 0.0000000
## 215 0.5863882 0.4148156 0.0000000
## 216 0.5863882 0.4148156 0.0000000
## 217 0.5863882 0.4148156 0.0000000
## 218 0.5863882 0.4148156 0.0000000
## 219 0.5863882 0.4148156 0.0000000
## 220 0.5863882 0.4148156 0.0000000
## 221 0.5863882 0.4148156 0.0000000
## 222 0.5863882 0.4148156 0.0000000
## 223 0.5863882 0.4148156 0.0000000
## 224 0.5863882 0.4148156 0.0000000
## 225 0.5863882 0.4148156 0.0000000
## 226 0.5863882 0.4148156 0.0000000
## 227 0.5863882 0.4148156 0.0000000
## 228 0.5863882 0.4148156 0.0000000
## 229 0.5863882 0.4148156 0.0000000
## 230 0.5863882 0.4148156 0.0000000
## 231 0.5863882 0.4148156 0.0000000
## 232 0.5863882 0.4148156 0.0000000
## 233 0.5863882 0.4148156 0.0000000
## 234 0.5863882 0.4148156 0.0000000
## 235 0.5863882 0.4148156 0.0000000
## 236 0.5863882 0.4148156 0.0000000
## 237 0.5863882 0.4148156 0.0000000
## 238 0.5863882 0.4148156 0.0000000
## 239 0.5863882 0.4148156 0.0000000
## 240 0.5863882 0.4148156 0.0000000
## 241 0.5863882 0.4148156 0.0000000
## 242 0.5863882 0.4148156 0.0000000
## 243 0.5863882 0.4148156 0.0000000
## 244 0.5863882 0.4148156 0.0000000
## 245 0.5863882 0.4148156 0.0000000
## 246 0.5863882 0.4148156 0.0000000
## 247 0.5863882 0.4148156 0.0000000
## 248 0.5863882 0.4148156 0.0000000
## 249 0.5863882 0.4148156 0.0000000
## 250 0.5863882 0.4148156 0.0000000
## 251 0.5863882 0.4148156 0.0000000
## 252 0.5863882 0.4148156 0.0000000
## 253 0.5863882 0.4148156 0.0000000
## 254 0.5863882 0.4148156 0.0000000
## 255 0.5863882 0.4148156 0.0000000
## 256 0.5863882 0.4148156 0.0000000
## 257 0.5863882 0.4148156 0.0000000
## 258 0.5863882 0.4148156 0.0000000
## 259 0.5863882 0.4148156 0.0000000
## 260 0.5863882 0.4148156 0.0000000
## 261 0.5863882 0.4148156 0.0000000
## 262 0.5863882 0.4148156 0.0000000
## 263 0.5863882 0.4148156 0.0000000
## 264 0.5863882 0.4148156 0.0000000
## 265 0.5863882 0.4148156 0.0000000
## 266 0.5863882 0.4148156 0.0000000
## 267 0.5863882 0.4148156 0.0000000
## 268 0.5863882 0.4148156 0.0000000
## 269 0.5863882 0.4148156 0.0000000
## 270 0.5863882 0.4148156 0.0000000
## 271 0.5863882 0.4148156 0.0000000
## 272 0.5863882 0.4148156 0.0000000
## 273 0.5863882 0.4148156 0.0000000
## 274 0.5863882 0.4148156 0.0000000
## 275 0.5863882 0.4148156 0.0000000
## 276 0.5863882 0.4148156 0.0000000
## 277 0.5863882 0.4148156 0.0000000
## 278 0.5863882 0.4148156 0.0000000
## 279 0.5863882 0.4148156 0.0000000
## 280 0.5863882 0.4148156 0.0000000
## 281 0.5863882 0.4148156 0.0000000
## 282 0.5863882 0.4148156 0.0000000
## 283 0.5863882 0.4148156 0.0000000
## 284 0.5863882 0.4148156 0.0000000
## 285 0.5863882 0.4148156 0.0000000
## 286 0.5863882 0.4148156 0.0000000
## 287 0.5863882 0.4148156 0.0000000
## 288 0.5863882 0.4148156 0.0000000
## 289 0.5863882 0.4148156 0.0000000
## 290 0.5863882 0.4148156 0.0000000
## 291 0.5863882 0.4148156 0.0000000
## 292 0.5863882 0.4148156 0.0000000
## 293 0.5863882 0.4148156 0.0000000
## 294 0.5863882 0.4148156 0.0000000
## 295 0.5863882 0.4148156 0.0000000
## 296 0.5863882 0.4148156 0.0000000
## 297 0.5863882 0.4148156 0.0000000
## 298 0.5863882 0.4148156 0.0000000
## 299 0.5863882 0.4148156 0.0000000
## 300 0.5863882 0.4148156 0.0000000
## 301 0.5863882 0.4148156 0.0000000
## 302 0.5863882 0.4148156 0.0000000
## 303 0.5863882 0.4148156 0.0000000
## 304 0.5863882 0.4148156 0.0000000
## 305 0.5863882 0.4148156 0.0000000
## 306 0.5863882 0.4148156 0.0000000
## 307 0.5863882 0.4148156 0.0000000
## 308 0.5863882 0.4148156 0.0000000
## 309 0.5863882 0.4148156 0.0000000
## 310 0.5863882 0.4148156 0.0000000
## 311 0.5863882 0.4148156 0.0000000
## 312 0.5863882 0.4148156 0.0000000
## 313 0.5863882 0.4148156 0.0000000
## 314 0.5863882 0.4148156 0.0000000
## 315 0.5863882 0.4148156 0.0000000
## 316 0.5863882 0.4148156 0.0000000
## 317 0.5863882 0.4148156 0.0000000
## 318 0.5863882 0.4148156 0.0000000
## 319 0.5863882 0.4148156 0.0000000
## 320 0.5863882 0.4148156 0.0000000
## 321 0.5863882 0.4148156 0.0000000
## 322 0.5863882 0.4148156 0.0000000
## 323 0.5863882 0.4148156 0.0000000
## 324 0.5863882 0.4148156 0.0000000
## 325 0.5863882 0.4148156 0.0000000
## 326 0.5863882 0.4148156 0.0000000
## 327 0.5863882 0.4148156 0.0000000
## 328 0.5863882 0.4148156 0.0000000
## 329 0.5863882 0.4148156 0.0000000
## 330 0.5863882 0.4148156 0.0000000
## 331 0.5863882 0.4148156 0.0000000
## 332 0.5863882 0.4148156 0.0000000
## 333 0.5863882 0.4148156 0.0000000
## 334 0.5863882 0.4148156 0.0000000
## 335 0.5863882 0.4148156 0.0000000
## 336 0.5863882 0.4148156 0.0000000
## 337 0.5863882 0.4148156 0.0000000
## 338 0.5863882 0.4148156 0.0000000
## 339 0.5863882 0.4148156 0.0000000
## 340 0.5863882 0.4148156 0.0000000
## 341 0.5863882 0.4148156 0.0000000
## 342 0.5863882 0.4148156 0.0000000
## 343 0.5863882 0.4148156 0.0000000
## 344 0.5863882 0.4148156 0.0000000
## 345 0.5863882 0.4148156 0.0000000
## 346 0.5863882 0.4148156 0.0000000
## 347 0.5863882 0.4148156 0.0000000
## 348 0.5863882 0.4148156 0.0000000
## 349 0.5863882 0.4148156 0.0000000
## 350 0.5863882 0.4148156 0.0000000
## 351 0.5863882 0.4148156 0.0000000
## 352 0.5863882 0.4148156 0.0000000
## 353 0.5863882 0.4148156 0.0000000
## 354 0.5863882 0.4148156 0.0000000
## 355 0.5863882 0.4148156 0.0000000
## 356 0.5863882 0.4148156 0.0000000
## 357 0.5863882 0.4148156 0.0000000
## 358 0.5863882 0.4148156 0.0000000
## 359 0.5863882 0.4148156 0.0000000
## 360 0.5863882 0.4148156 0.0000000
## 361 0.5863882 0.4148156 0.0000000
## 362 0.5863882 0.4148156 0.0000000
## 363 0.5863882 0.4148156 0.0000000
## 364 0.5863882 0.4148156 0.0000000
## 365 0.5863882 0.4148156 0.0000000
## 366 0.5863882 0.4148156 0.0000000
## 367 0.5863882 0.4148156 0.0000000
## 368 0.5863882 0.4148156 0.0000000
## 369 0.5863882 0.4148156 0.0000000
## 370 0.5863882 0.4148156 0.0000000
## 371 0.5863882 0.4148156 0.0000000
## 372 0.5863882 0.4148156 0.0000000
## 373 0.5863882 0.4148156 0.0000000
## 374 0.5863882 0.4148156 0.0000000
## 375 0.5863882 0.4148156 0.0000000
## 376 0.5863882 0.4148156 0.0000000
## 377 0.5863882 0.4148156 0.0000000
## 378 0.5863882 0.4148156 0.0000000
## 379 0.5863882 0.4148156 0.0000000
## 380 0.5863882 0.4148156 0.0000000
## 381 0.5863882 0.4148156 0.0000000
## 382 0.5863882 0.4148156 0.0000000
## 383 0.5863882 0.4148156 0.0000000
## 384 0.5863882 0.4148156 0.0000000
## 385 0.5434531 0.3731106 0.1428571
## 386 0.5434531 0.3731106 0.1428571
## 387 0.5434531 0.3731106 0.1428571
## 388 0.5434531 0.3731106 0.1428571
## 389 0.5434531 0.3731106 0.1428571
## 390 0.5434531 0.3731106 0.1428571
## 391 0.5434531 0.3731106 0.1428571
## 392 0.5434531 0.3731106 0.1428571
## 393 0.5434531 0.3731106 0.1428571
## 394 0.5434531 0.3731106 0.1428571
## 395 0.5434531 0.3731106 0.1428571
## 396 0.5434531 0.3731106 0.1428571
## 397 0.5434531 0.3731106 0.1428571
## 398 0.5434531 0.3731106 0.1428571
## 399 0.5434531 0.3731106 0.1428571
## 400 0.5434531 0.3731106 0.1428571
## 401 0.5434531 0.3731106 0.1428571
## 402 0.5434531 0.3731106 0.1428571
## 403 0.5434531 0.3731106 0.1428571
## 404 0.5434531 0.3731106 0.1428571
## 405 0.5434531 0.3731106 0.1428571
## 406 0.5434531 0.3731106 0.1428571
## 407 0.5434531 0.3731106 0.1428571
## 408 0.5434531 0.3731106 0.1428571
## 409 0.5434531 0.3731106 0.1428571
## 410 0.5434531 0.3731106 0.1428571
## 411 0.5434531 0.3731106 0.1428571
## 412 0.5434531 0.3731106 0.1428571
## 413 0.5434531 0.3731106 0.1428571
## 414 0.5434531 0.3731106 0.1428571
## 415 0.5434531 0.3731106 0.1428571
## 416 0.5434531 0.3731106 0.1428571
## 417 0.5434531 0.3731106 0.1428571
## 418 0.5434531 0.3731106 0.1428571
## 419 0.5434531 0.3731106 0.1428571
## 420 0.5434531 0.3731106 0.1428571
## 421 0.5434531 0.3731106 0.1428571
## 422 0.5434531 0.3731106 0.1428571
## 423 0.5434531 0.3731106 0.1428571
## 424 0.5434531 0.3731106 0.1428571
## 425 0.5434531 0.3731106 0.1428571
## 426 0.5434531 0.3731106 0.1428571
## 427 0.5434531 0.3731106 0.1428571
## 428 0.5434531 0.3731106 0.1428571
## 429 0.5434531 0.3731106 0.1428571
## 430 0.5434531 0.3731106 0.1428571
## 431 0.5434531 0.3731106 0.1428571
## 432 0.5434531 0.3731106 0.1428571
## 433 0.5434531 0.3731106 0.1428571
## 434 0.5434531 0.3731106 0.1428571
## 435 0.5434531 0.3731106 0.1428571
## 436 0.5434531 0.3731106 0.1428571
## 437 0.5434531 0.3731106 0.1428571
## 438 0.5434531 0.3731106 0.1428571
## 439 0.5434531 0.3731106 0.1428571
## 440 0.5434531 0.3731106 0.1428571
## 441 0.5434531 0.3731106 0.1428571
## 442 0.5434531 0.3731106 0.1428571
## 443 0.5434531 0.3731106 0.1428571
## 444 0.5434531 0.3731106 0.1428571
## 445 0.5434531 0.3731106 0.1428571
## 446 0.5434531 0.3731106 0.1428571
## 447 0.5434531 0.3731106 0.1428571
## 448 0.5434531 0.3731106 0.1428571
## 449 0.5434531 0.3731106 0.1428571
## 450 0.5434531 0.3731106 0.1428571
## 451 0.5434531 0.3731106 0.1428571
## 452 0.5434531 0.3731106 0.1428571
## 453 0.5434531 0.3731106 0.1428571
## 454 0.5434531 0.3731106 0.1428571
## 455 0.5434531 0.3731106 0.1428571
## 456 0.5434531 0.3731106 0.1428571
## 457 0.5434531 0.3731106 0.1428571
## 458 0.5434531 0.3731106 0.1428571
## 459 0.5434531 0.3731106 0.1428571
## 460 0.5434531 0.3731106 0.1428571
## 461 0.5434531 0.3731106 0.1428571
## 462 0.5434531 0.3731106 0.1428571
## 463 0.5434531 0.3731106 0.1428571
## 464 0.5434531 0.3731106 0.1428571
## 465 0.5434531 0.3731106 0.1428571
## 466 0.5434531 0.3731106 0.1428571
## 467 0.5434531 0.3731106 0.1428571
## 468 0.5434531 0.3731106 0.1428571
## 469 0.5434531 0.3731106 0.1428571
## 470 0.5434531 0.3731106 0.1428571
## 471 0.5434531 0.3731106 0.1428571
## 472 0.5434531 0.3731106 0.1428571
## 473 0.5434531 0.3731106 0.1428571
## 474 0.5434531 0.3731106 0.1428571
## 475 0.5434531 0.3731106 0.1428571
## 476 0.5434531 0.3731106 0.1428571
## 477 0.5434531 0.3731106 0.1428571
## 478 0.5434531 0.3731106 0.1428571
## 479 0.5434531 0.3731106 0.1428571
## 480 0.5434531 0.3731106 0.1428571
## 481 0.5434531 0.3731106 0.1428571
## 482 0.5434531 0.3731106 0.1428571
## 483 0.5434531 0.3731106 0.1428571
## 484 0.5434531 0.3731106 0.1428571
## 485 0.5434531 0.3731106 0.1428571
## 486 0.5434531 0.3731106 0.1428571
## 487 0.5434531 0.3731106 0.1428571
## 488 0.5434531 0.3731106 0.1428571
## 489 0.5434531 0.3731106 0.1428571
## 490 0.5434531 0.3731106 0.1428571
## 491 0.5434531 0.3731106 0.1428571
## 492 0.5434531 0.3731106 0.1428571
## 493 0.5434531 0.3731106 0.1428571
## 494 0.5434531 0.3731106 0.1428571
## 495 0.5434531 0.3731106 0.1428571
## 496 0.5434531 0.3731106 0.1428571
## 497 0.5434531 0.3731106 0.1428571
## 498 0.5434531 0.3731106 0.1428571
## 499 0.5434531 0.3731106 0.1428571
## 500 0.5434531 0.3731106 0.1428571
## 501 0.5434531 0.3731106 0.1428571
## 502 0.5434531 0.3731106 0.1428571
## 503 0.5434531 0.3731106 0.1428571
## 504 0.5434531 0.3731106 0.1428571
## 505 0.5434531 0.3731106 0.1428571
## 506 0.5434531 0.3731106 0.1428571
## 507 0.5434531 0.3731106 0.1428571
## 508 0.5434531 0.3731106 0.1428571
## 509 0.5434531 0.3731106 0.1428571
## 510 0.5434531 0.3731106 0.1428571
## 511 0.5434531 0.3731106 0.1428571
## 512 0.5434531 0.3731106 0.1428571
## 513 0.5434531 0.3731106 0.1428571
## 514 0.5434531 0.3731106 0.1428571
## 515 0.5434531 0.3731106 0.1428571
## 516 0.5434531 0.3731106 0.1428571
## 517 0.5434531 0.3731106 0.1428571
## 518 0.5434531 0.3731106 0.1428571
## 519 0.5434531 0.3731106 0.1428571
## 520 0.5434531 0.3731106 0.1428571
## 521 0.5434531 0.3731106 0.1428571
## 522 0.5434531 0.3731106 0.1428571
## 523 0.5434531 0.3731106 0.1428571
## 524 0.5434531 0.3731106 0.1428571
## 525 0.5434531 0.3731106 0.1428571
## 526 0.5434531 0.3731106 0.1428571
## 527 0.5434531 0.3731106 0.1428571
## 528 0.5434531 0.3731106 0.1428571
## 529 0.5434531 0.3731106 0.1428571
## 530 0.5434531 0.3731106 0.1428571
## 531 0.5434531 0.3731106 0.1428571
## 532 0.5434531 0.3731106 0.1428571
## 533 0.5434531 0.3731106 0.1428571
## 534 0.5434531 0.3731106 0.1428571
## 535 0.5434531 0.3731106 0.1428571
## 536 0.5434531 0.3731106 0.1428571
## 537 0.5434531 0.3731106 0.1428571
## 538 0.5434531 0.3731106 0.1428571
## 539 0.5434531 0.3731106 0.1428571
## 540 0.5434531 0.3731106 0.1428571
## 541 0.5434531 0.3731106 0.1428571
## 542 0.5434531 0.3731106 0.1428571
## 543 0.5434531 0.3731106 0.1428571
## 544 0.5434531 0.3731106 0.1428571
## 545 0.5434531 0.3731106 0.1428571
## 546 0.5434531 0.3731106 0.1428571
## 547 0.5434531 0.3731106 0.1428571
## 548 0.5434531 0.3731106 0.1428571
## 549 0.5434531 0.3731106 0.1428571
## 550 0.5434531 0.3731106 0.1428571
## 551 0.5434531 0.3731106 0.1428571
## 552 0.5434531 0.3731106 0.1428571
## 553 0.5434531 0.3731106 0.1428571
## 554 0.5434531 0.3731106 0.1428571
## 555 0.5434531 0.3731106 0.1428571
## 556 0.5434531 0.3731106 0.1428571
## 557 0.5434531 0.3731106 0.1428571
## 558 0.5434531 0.3731106 0.1428571
## 559 0.5434531 0.3731106 0.1428571
## 560 0.5434531 0.3731106 0.1428571
## 561 0.5434531 0.3731106 0.1428571
## 562 0.5434531 0.3731106 0.1428571
## 563 0.5434531 0.3731106 0.1428571
## 564 0.5434531 0.3731106 0.1428571
## 565 0.5434531 0.3731106 0.1428571
## 566 0.5434531 0.3731106 0.1428571
## 567 0.5434531 0.3731106 0.1428571
## 568 0.5434531 0.3731106 0.1428571
## 569 0.5434531 0.3731106 0.1428571
## 570 0.5434531 0.3731106 0.1428571
## 571 0.5434531 0.3731106 0.1428571
## 572 0.5434531 0.3731106 0.1428571
## 573 0.5434531 0.3731106 0.1428571
## 574 0.5434531 0.3731106 0.1428571
## 575 0.5434531 0.3731106 0.1428571
## 576 0.5434531 0.3731106 0.1428571
## 577 0.6161471 0.4452403 0.2857143
## 578 0.6161471 0.4452403 0.2857143
## 579 0.6161471 0.4452403 0.2857143
## 580 0.6161471 0.4452403 0.2857143
## 581 0.6161471 0.4452403 0.2857143
## 582 0.6161471 0.4452403 0.2857143
## 583 0.6161471 0.4452403 0.2857143
## 584 0.6161471 0.4452403 0.2857143
## 585 0.6161471 0.4452403 0.2857143
## 586 0.6161471 0.4452403 0.2857143
## 587 0.6161471 0.4452403 0.2857143
## 588 0.6161471 0.4452403 0.2857143
## 589 0.6161471 0.4452403 0.2857143
## 590 0.6161471 0.4452403 0.2857143
## 591 0.6161471 0.4452403 0.2857143
## 592 0.6161471 0.4452403 0.2857143
## 593 0.6161471 0.4452403 0.2857143
## 594 0.6161471 0.4452403 0.2857143
## 595 0.6161471 0.4452403 0.2857143
## 596 0.6161471 0.4452403 0.2857143
## 597 0.6161471 0.4452403 0.2857143
## 598 0.6161471 0.4452403 0.2857143
## 599 0.6161471 0.4452403 0.2857143
## 600 0.6161471 0.4452403 0.2857143
## 601 0.6161471 0.4452403 0.2857143
## 602 0.6161471 0.4452403 0.2857143
## 603 0.6161471 0.4452403 0.2857143
## 604 0.6161471 0.4452403 0.2857143
## 605 0.6161471 0.4452403 0.2857143
## 606 0.6161471 0.4452403 0.2857143
## 607 0.6161471 0.4452403 0.2857143
## 608 0.6161471 0.4452403 0.2857143
## 609 0.6161471 0.4452403 0.2857143
## 610 0.6161471 0.4452403 0.2857143
## 611 0.6161471 0.4452403 0.2857143
## 612 0.6161471 0.4452403 0.2857143
## 613 0.6161471 0.4452403 0.2857143
## 614 0.6161471 0.4452403 0.2857143
## 615 0.6161471 0.4452403 0.2857143
## 616 0.6161471 0.4452403 0.2857143
## 617 0.6161471 0.4452403 0.2857143
## 618 0.6161471 0.4452403 0.2857143
## 619 0.6161471 0.4452403 0.2857143
## 620 0.6161471 0.4452403 0.2857143
## 621 0.6161471 0.4452403 0.2857143
## 622 0.6161471 0.4452403 0.2857143
## 623 0.6161471 0.4452403 0.2857143
## 624 0.6161471 0.4452403 0.2857143
## 625 0.6161471 0.4452403 0.2857143
## 626 0.6161471 0.4452403 0.2857143
## 627 0.6161471 0.4452403 0.2857143
## 628 0.6161471 0.4452403 0.2857143
## 629 0.6161471 0.4452403 0.2857143
## 630 0.6161471 0.4452403 0.2857143
## 631 0.6161471 0.4452403 0.2857143
## 632 0.6161471 0.4452403 0.2857143
## 633 0.6161471 0.4452403 0.2857143
## 634 0.6161471 0.4452403 0.2857143
## 635 0.6161471 0.4452403 0.2857143
## 636 0.6161471 0.4452403 0.2857143
## 637 0.6161471 0.4452403 0.2857143
## 638 0.6161471 0.4452403 0.2857143
## 639 0.6161471 0.4452403 0.2857143
## 640 0.6161471 0.4452403 0.2857143
## 641 0.6161471 0.4452403 0.2857143
## 642 0.6161471 0.4452403 0.2857143
## 643 0.6161471 0.4452403 0.2857143
## 644 0.6161471 0.4452403 0.2857143
## 645 0.6161471 0.4452403 0.2857143
## 646 0.6161471 0.4452403 0.2857143
## 647 0.6161471 0.4452403 0.2857143
## 648 0.6161471 0.4452403 0.2857143
## 649 0.6161471 0.4452403 0.2857143
## 650 0.6161471 0.4452403 0.2857143
## 651 0.6161471 0.4452403 0.2857143
## 652 0.6161471 0.4452403 0.2857143
## 653 0.6161471 0.4452403 0.2857143
## 654 0.6161471 0.4452403 0.2857143
## 655 0.6161471 0.4452403 0.2857143
## 656 0.6161471 0.4452403 0.2857143
## 657 0.6161471 0.4452403 0.2857143
## 658 0.6161471 0.4452403 0.2857143
## 659 0.6161471 0.4452403 0.2857143
## 660 0.6161471 0.4452403 0.2857143
## 661 0.6161471 0.4452403 0.2857143
## 662 0.6161471 0.4452403 0.2857143
## 663 0.6161471 0.4452403 0.2857143
## 664 0.6161471 0.4452403 0.2857143
## 665 0.6161471 0.4452403 0.2857143
## 666 0.6161471 0.4452403 0.2857143
## 667 0.6161471 0.4452403 0.2857143
## 668 0.6161471 0.4452403 0.2857143
## 669 0.6161471 0.4452403 0.2857143
## 670 0.6161471 0.4452403 0.2857143
## 671 0.6161471 0.4452403 0.2857143
## 672 0.6161471 0.4452403 0.2857143
## 673 0.6161471 0.4452403 0.2857143
## 674 0.6161471 0.4452403 0.2857143
## 675 0.6161471 0.4452403 0.2857143
## 676 0.6161471 0.4452403 0.2857143
## 677 0.6161471 0.4452403 0.2857143
## 678 0.6161471 0.4452403 0.2857143
## 679 0.6161471 0.4452403 0.2857143
## 680 0.6161471 0.4452403 0.2857143
## 681 0.6161471 0.4452403 0.2857143
## 682 0.6161471 0.4452403 0.2857143
## 683 0.6161471 0.4452403 0.2857143
## 684 0.6161471 0.4452403 0.2857143
## 685 0.6161471 0.4452403 0.2857143
## 686 0.6161471 0.4452403 0.2857143
## 687 0.6161471 0.4452403 0.2857143
## 688 0.6161471 0.4452403 0.2857143
## 689 0.6161471 0.4452403 0.2857143
## 690 0.6161471 0.4452403 0.2857143
## 691 0.6161471 0.4452403 0.2857143
## 692 0.6161471 0.4452403 0.2857143
## 693 0.6161471 0.4452403 0.2857143
## 694 0.6161471 0.4452403 0.2857143
## 695 0.6161471 0.4452403 0.2857143
## 696 0.6161471 0.4452403 0.2857143
## 697 0.6161471 0.4452403 0.2857143
## 698 0.6161471 0.4452403 0.2857143
## 699 0.6161471 0.4452403 0.2857143
## 700 0.6161471 0.4452403 0.2857143
## 701 0.6161471 0.4452403 0.2857143
## 702 0.6161471 0.4452403 0.2857143
## 703 0.6161471 0.4452403 0.2857143
## 704 0.6161471 0.4452403 0.2857143
## 705 0.6161471 0.4452403 0.2857143
## 706 0.6161471 0.4452403 0.2857143
## 707 0.6161471 0.4452403 0.2857143
## 708 0.6161471 0.4452403 0.2857143
## 709 0.6161471 0.4452403 0.2857143
## 710 0.6161471 0.4452403 0.2857143
## 711 0.6161471 0.4452403 0.2857143
## 712 0.6161471 0.4452403 0.2857143
## 713 0.6161471 0.4452403 0.2857143
## 714 0.6161471 0.4452403 0.2857143
## 715 0.6161471 0.4452403 0.2857143
## 716 0.6161471 0.4452403 0.2857143
## 717 0.6161471 0.4452403 0.2857143
## 718 0.6161471 0.4452403 0.2857143
## 719 0.6161471 0.4452403 0.2857143
## 720 0.6161471 0.4452403 0.2857143
## 721 0.6161471 0.4452403 0.2857143
## 722 0.6161471 0.4452403 0.2857143
## 723 0.6161471 0.4452403 0.2857143
## 724 0.6161471 0.4452403 0.2857143
## 725 0.6161471 0.4452403 0.2857143
## 726 0.6161471 0.4452403 0.2857143
## 727 0.6161471 0.4452403 0.2857143
## 728 0.6161471 0.4452403 0.2857143
## 729 0.6161471 0.4452403 0.2857143
## 730 0.6161471 0.4452403 0.2857143
## 731 0.6161471 0.4452403 0.2857143
## 732 0.6161471 0.4452403 0.2857143
## 733 0.6161471 0.4452403 0.2857143
## 734 0.6161471 0.4452403 0.2857143
## 735 0.6161471 0.4452403 0.2857143
## 736 0.6161471 0.4452403 0.2857143
## 737 0.6161471 0.4452403 0.2857143
## 738 0.6161471 0.4452403 0.2857143
## 739 0.6161471 0.4452403 0.2857143
## 740 0.6161471 0.4452403 0.2857143
## 741 0.6161471 0.4452403 0.2857143
## 742 0.6161471 0.4452403 0.2857143
## 743 0.6161471 0.4452403 0.2857143
## 744 0.6161471 0.4452403 0.2857143
## 745 0.6161471 0.4452403 0.2857143
## 746 0.6161471 0.4452403 0.2857143
## 747 0.6161471 0.4452403 0.2857143
## 748 0.6161471 0.4452403 0.2857143
## 749 0.6161471 0.4452403 0.2857143
## 750 0.6161471 0.4452403 0.2857143
## 751 0.6161471 0.4452403 0.2857143
## 752 0.6161471 0.4452403 0.2857143
## 753 0.6161471 0.4452403 0.2857143
## 754 0.6161471 0.4452403 0.2857143
## 755 0.6161471 0.4452403 0.2857143
## 756 0.6161471 0.4452403 0.2857143
## 757 0.6161471 0.4452403 0.2857143
## 758 0.6161471 0.4452403 0.2857143
## 759 0.6161471 0.4452403 0.2857143
## 760 0.6161471 0.4452403 0.2857143
## 761 0.6161471 0.4452403 0.2857143
## 762 0.6161471 0.4452403 0.2857143
## 763 0.6161471 0.4452403 0.2857143
## 764 0.6161471 0.4452403 0.2857143
## 765 0.6161471 0.4452403 0.2857143
## 766 0.6161471 0.4452403 0.2857143
## 767 0.6161471 0.4452403 0.2857143
## 768 0.6161471 0.4452403 0.2857143
## 769 0.6485050 0.4798427 0.0000000
## 770 0.6485050 0.4798427 0.0000000
## 771 0.6485050 0.4798427 0.0000000
## 772 0.6485050 0.4798427 0.0000000
## 773 0.6485050 0.4798427 0.0000000
## 774 0.6485050 0.4798427 0.0000000
## 775 0.6485050 0.4798427 0.0000000
## 776 0.6485050 0.4798427 0.0000000
## 777 0.6485050 0.4798427 0.0000000
## 778 0.6485050 0.4798427 0.0000000
## 779 0.6485050 0.4798427 0.0000000
## 780 0.6485050 0.4798427 0.0000000
## 781 0.6485050 0.4798427 0.0000000
## 782 0.6485050 0.4798427 0.0000000
## 783 0.6485050 0.4798427 0.0000000
## 784 0.6485050 0.4798427 0.0000000
## 785 0.6485050 0.4798427 0.0000000
## 786 0.6485050 0.4798427 0.0000000
## 787 0.6485050 0.4798427 0.0000000
## 788 0.6485050 0.4798427 0.0000000
## 789 0.6485050 0.4798427 0.0000000
## 790 0.6485050 0.4798427 0.0000000
## 791 0.6485050 0.4798427 0.0000000
## 792 0.6485050 0.4798427 0.0000000
## 793 0.6485050 0.4798427 0.0000000
## 794 0.6485050 0.4798427 0.0000000
## 795 0.6485050 0.4798427 0.0000000
## 796 0.6485050 0.4798427 0.0000000
## 797 0.6485050 0.4798427 0.0000000
## 798 0.6485050 0.4798427 0.0000000
## 799 0.6485050 0.4798427 0.0000000
## 800 0.6485050 0.4798427 0.0000000
## 801 0.6485050 0.4798427 0.0000000
## 802 0.6485050 0.4798427 0.0000000
## 803 0.6485050 0.4798427 0.0000000
## 804 0.6485050 0.4798427 0.0000000
## 805 0.6485050 0.4798427 0.0000000
## 806 0.6485050 0.4798427 0.0000000
## 807 0.6485050 0.4798427 0.0000000
## 808 0.6485050 0.4798427 0.0000000
## 809 0.6485050 0.4798427 0.0000000
## 810 0.6485050 0.4798427 0.0000000
## 811 0.6485050 0.4798427 0.0000000
## 812 0.6485050 0.4798427 0.0000000
## 813 0.6485050 0.4798427 0.0000000
## 814 0.6485050 0.4798427 0.0000000
## 815 0.6485050 0.4798427 0.0000000
## 816 0.6485050 0.4798427 0.0000000
## 817 0.6485050 0.4798427 0.0000000
## 818 0.6485050 0.4798427 0.0000000
## 819 0.6485050 0.4798427 0.0000000
## 820 0.6485050 0.4798427 0.0000000
## 821 0.6485050 0.4798427 0.0000000
## 822 0.6485050 0.4798427 0.0000000
## 823 0.6485050 0.4798427 0.0000000
## 824 0.6485050 0.4798427 0.0000000
## 825 0.6485050 0.4798427 0.0000000
## 826 0.6485050 0.4798427 0.0000000
## 827 0.6485050 0.4798427 0.0000000
## 828 0.6485050 0.4798427 0.0000000
## 829 0.6485050 0.4798427 0.0000000
## 830 0.6485050 0.4798427 0.0000000
## 831 0.6485050 0.4798427 0.0000000
## 832 0.6485050 0.4798427 0.0000000
## 833 0.6485050 0.4798427 0.0000000
## 834 0.6485050 0.4798427 0.0000000
## 835 0.6485050 0.4798427 0.0000000
## 836 0.6485050 0.4798427 0.0000000
## 837 0.6485050 0.4798427 0.0000000
## 838 0.6485050 0.4798427 0.0000000
## 839 0.6485050 0.4798427 0.0000000
## 840 0.6485050 0.4798427 0.0000000
## 841 0.6485050 0.4798427 0.0000000
## 842 0.6485050 0.4798427 0.0000000
## 843 0.6485050 0.4798427 0.0000000
## 844 0.6485050 0.4798427 0.0000000
## 845 0.6485050 0.4798427 0.0000000
## 846 0.6485050 0.4798427 0.0000000
## 847 0.6485050 0.4798427 0.0000000
## 848 0.6485050 0.4798427 0.0000000
## 849 0.6485050 0.4798427 0.0000000
## 850 0.6485050 0.4798427 0.0000000
## 851 0.6485050 0.4798427 0.0000000
## 852 0.6485050 0.4798427 0.0000000
## 853 0.6485050 0.4798427 0.0000000
## 854 0.6485050 0.4798427 0.0000000
## 855 0.6485050 0.4798427 0.0000000
## 856 0.6485050 0.4798427 0.0000000
## 857 0.6485050 0.4798427 0.0000000
## 858 0.6485050 0.4798427 0.0000000
## 859 0.6485050 0.4798427 0.0000000
## 860 0.6485050 0.4798427 0.0000000
## 861 0.6485050 0.4798427 0.0000000
## 862 0.6485050 0.4798427 0.0000000
## 863 0.6485050 0.4798427 0.0000000
## 864 0.6485050 0.4798427 0.0000000
## 865 0.6485050 0.4798427 0.0000000
## 866 0.6485050 0.4798427 0.0000000
## 867 0.6485050 0.4798427 0.0000000
## 868 0.6485050 0.4798427 0.0000000
## 869 0.6485050 0.4798427 0.0000000
## 870 0.6485050 0.4798427 0.0000000
## 871 0.6485050 0.4798427 0.0000000
## 872 0.6485050 0.4798427 0.0000000
## 873 0.6485050 0.4798427 0.0000000
## 874 0.6485050 0.4798427 0.0000000
## 875 0.6485050 0.4798427 0.0000000
## 876 0.6485050 0.4798427 0.0000000
## 877 0.6485050 0.4798427 0.0000000
## 878 0.6485050 0.4798427 0.0000000
## 879 0.6485050 0.4798427 0.0000000
## 880 0.6485050 0.4798427 0.0000000
## 881 0.6485050 0.4798427 0.0000000
## 882 0.6485050 0.4798427 0.0000000
## 883 0.6485050 0.4798427 0.0000000
## 884 0.6485050 0.4798427 0.0000000
## 885 0.6485050 0.4798427 0.0000000
## 886 0.6485050 0.4798427 0.0000000
## 887 0.6485050 0.4798427 0.0000000
## 888 0.6485050 0.4798427 0.0000000
## 889 0.6485050 0.4798427 0.0000000
## 890 0.6485050 0.4798427 0.0000000
## 891 0.6485050 0.4798427 0.0000000
## 892 0.6485050 0.4798427 0.0000000
## 893 0.6485050 0.4798427 0.0000000
## 894 0.6485050 0.4798427 0.0000000
## 895 0.6485050 0.4798427 0.0000000
## 896 0.6485050 0.4798427 0.0000000
## 897 0.6485050 0.4798427 0.0000000
## 898 0.6485050 0.4798427 0.0000000
## 899 0.6485050 0.4798427 0.0000000
## 900 0.6485050 0.4798427 0.0000000
## 901 0.6485050 0.4798427 0.0000000
## 902 0.6485050 0.4798427 0.0000000
## 903 0.6485050 0.4798427 0.0000000
## 904 0.6485050 0.4798427 0.0000000
## 905 0.6485050 0.4798427 0.0000000
## 906 0.6485050 0.4798427 0.0000000
## 907 0.6485050 0.4798427 0.0000000
## 908 0.6485050 0.4798427 0.0000000
## 909 0.6485050 0.4798427 0.0000000
## 910 0.6485050 0.4798427 0.0000000
## 911 0.6485050 0.4798427 0.0000000
## 912 0.6485050 0.4798427 0.0000000
## 913 0.6485050 0.4798427 0.0000000
## 914 0.6485050 0.4798427 0.0000000
## 915 0.6485050 0.4798427 0.0000000
## 916 0.6485050 0.4798427 0.0000000
## 917 0.6485050 0.4798427 0.0000000
## 918 0.6485050 0.4798427 0.0000000
## 919 0.6485050 0.4798427 0.0000000
## 920 0.6485050 0.4798427 0.0000000
## 921 0.6485050 0.4798427 0.0000000
## 922 0.6485050 0.4798427 0.0000000
## 923 0.6485050 0.4798427 0.0000000
## 924 0.6485050 0.4798427 0.0000000
## 925 0.6485050 0.4798427 0.0000000
## 926 0.6485050 0.4798427 0.0000000
## 927 0.6485050 0.4798427 0.0000000
## 928 0.6485050 0.4798427 0.0000000
## 929 0.6485050 0.4798427 0.0000000
## 930 0.6485050 0.4798427 0.0000000
## 931 0.6485050 0.4798427 0.0000000
## 932 0.6485050 0.4798427 0.0000000
## 933 0.6485050 0.4798427 0.0000000
## 934 0.6485050 0.4798427 0.0000000
## 935 0.6485050 0.4798427 0.0000000
## 936 0.6485050 0.4798427 0.0000000
## 937 0.6485050 0.4798427 0.0000000
## 938 0.6485050 0.4798427 0.0000000
## 939 0.6485050 0.4798427 0.0000000
## 940 0.6485050 0.4798427 0.0000000
## 941 0.6485050 0.4798427 0.0000000
## 942 0.6485050 0.4798427 0.0000000
## 943 0.6485050 0.4798427 0.0000000
## 944 0.6485050 0.4798427 0.0000000
## 945 0.6485050 0.4798427 0.0000000
## 946 0.6485050 0.4798427 0.0000000
## 947 0.6485050 0.4798427 0.0000000
## 948 0.6485050 0.4798427 0.0000000
## 949 0.6485050 0.4798427 0.0000000
## 950 0.6485050 0.4798427 0.0000000
## 951 0.6485050 0.4798427 0.0000000
## 952 0.6485050 0.4798427 0.0000000
## 953 0.6485050 0.4798427 0.0000000
## 954 0.6485050 0.4798427 0.0000000
## 955 0.6485050 0.4798427 0.0000000
## 956 0.6485050 0.4798427 0.0000000
## 957 0.6485050 0.4798427 0.0000000
## 958 0.6485050 0.4798427 0.0000000
## 959 0.6485050 0.4798427 0.0000000
## 960 0.6485050 0.4798427 0.0000000
## 961 0.4775502 0.3136722 0.2500000
## 962 0.4775502 0.3136722 0.2500000
## 963 0.4775502 0.3136722 0.2500000
## 964 0.4775502 0.3136722 0.2500000
## 965 0.4775502 0.3136722 0.2500000
## 966 0.4775502 0.3136722 0.2500000
## 967 0.4775502 0.3136722 0.2500000
## 968 0.4775502 0.3136722 0.2500000
## 969 0.4775502 0.3136722 0.2500000
## 970 0.4775502 0.3136722 0.2500000
## 971 0.4775502 0.3136722 0.2500000
## 972 0.4775502 0.3136722 0.2500000
## 973 0.4775502 0.3136722 0.2500000
## 974 0.4775502 0.3136722 0.2500000
## 975 0.4775502 0.3136722 0.2500000
## 976 0.4775502 0.3136722 0.2500000
## 977 0.4775502 0.3136722 0.2500000
## 978 0.4775502 0.3136722 0.2500000
## 979 0.4775502 0.3136722 0.2500000
## 980 0.4775502 0.3136722 0.2500000
## 981 0.4775502 0.3136722 0.2500000
## 982 0.4775502 0.3136722 0.2500000
## 983 0.4775502 0.3136722 0.2500000
## 984 0.4775502 0.3136722 0.2500000
## 985 0.4775502 0.3136722 0.2500000
## 986 0.4775502 0.3136722 0.2500000
## 987 0.4775502 0.3136722 0.2500000
## 988 0.4775502 0.3136722 0.2500000
## 989 0.4775502 0.3136722 0.2500000
## 990 0.4775502 0.3136722 0.2500000
## 991 0.4775502 0.3136722 0.2500000
## 992 0.4775502 0.3136722 0.2500000
## 993 0.4775502 0.3136722 0.2500000
## 994 0.4775502 0.3136722 0.2500000
## 995 0.4775502 0.3136722 0.2500000
## 996 0.4775502 0.3136722 0.2500000
## 997 0.4775502 0.3136722 0.2500000
## 998 0.4775502 0.3136722 0.2500000
## 999 0.4775502 0.3136722 0.2500000
## 1000 0.4775502 0.3136722 0.2500000
## 1001 0.4775502 0.3136722 0.2500000
## 1002 0.4775502 0.3136722 0.2500000
## 1003 0.4775502 0.3136722 0.2500000
## 1004 0.4775502 0.3136722 0.2500000
## 1005 0.4775502 0.3136722 0.2500000
## 1006 0.4775502 0.3136722 0.2500000
## 1007 0.4775502 0.3136722 0.2500000
## 1008 0.4775502 0.3136722 0.2500000
## 1009 0.4775502 0.3136722 0.2500000
## 1010 0.4775502 0.3136722 0.2500000
## 1011 0.4775502 0.3136722 0.2500000
## 1012 0.4775502 0.3136722 0.2500000
## 1013 0.4775502 0.3136722 0.2500000
## 1014 0.4775502 0.3136722 0.2500000
## 1015 0.4775502 0.3136722 0.2500000
## 1016 0.4775502 0.3136722 0.2500000
## 1017 0.4775502 0.3136722 0.2500000
## 1018 0.4775502 0.3136722 0.2500000
## 1019 0.4775502 0.3136722 0.2500000
## 1020 0.4775502 0.3136722 0.2500000
## 1021 0.4775502 0.3136722 0.2500000
## 1022 0.4775502 0.3136722 0.2500000
## 1023 0.4775502 0.3136722 0.2500000
## 1024 0.4775502 0.3136722 0.2500000
## 1025 0.4775502 0.3136722 0.2500000
## 1026 0.4775502 0.3136722 0.2500000
## 1027 0.4775502 0.3136722 0.2500000
## 1028 0.4775502 0.3136722 0.2500000
## 1029 0.4775502 0.3136722 0.2500000
## 1030 0.4775502 0.3136722 0.2500000
## 1031 0.4775502 0.3136722 0.2500000
## 1032 0.4775502 0.3136722 0.2500000
## 1033 0.4775502 0.3136722 0.2500000
## 1034 0.4775502 0.3136722 0.2500000
## 1035 0.4775502 0.3136722 0.2500000
## 1036 0.4775502 0.3136722 0.2500000
## 1037 0.4775502 0.3136722 0.2500000
## 1038 0.4775502 0.3136722 0.2500000
## 1039 0.4775502 0.3136722 0.2500000
## 1040 0.4775502 0.3136722 0.2500000
## 1041 0.4775502 0.3136722 0.2500000
## 1042 0.4775502 0.3136722 0.2500000
## 1043 0.4775502 0.3136722 0.2500000
## 1044 0.4775502 0.3136722 0.2500000
## 1045 0.4775502 0.3136722 0.2500000
## 1046 0.4775502 0.3136722 0.2500000
## 1047 0.4775502 0.3136722 0.2500000
## 1048 0.4775502 0.3136722 0.2500000
## 1049 0.4775502 0.3136722 0.2500000
## 1050 0.4775502 0.3136722 0.2500000
## 1051 0.4775502 0.3136722 0.2500000
## 1052 0.4775502 0.3136722 0.2500000
## 1053 0.4775502 0.3136722 0.2500000
## 1054 0.4775502 0.3136722 0.2500000
## 1055 0.4775502 0.3136722 0.2500000
## 1056 0.4775502 0.3136722 0.2500000
## 1057 0.4775502 0.3136722 0.2500000
## 1058 0.4775502 0.3136722 0.2500000
## 1059 0.4775502 0.3136722 0.2500000
## 1060 0.4775502 0.3136722 0.2500000
## 1061 0.4775502 0.3136722 0.2500000
## 1062 0.4775502 0.3136722 0.2500000
## 1063 0.4775502 0.3136722 0.2500000
## 1064 0.4775502 0.3136722 0.2500000
## 1065 0.4775502 0.3136722 0.2500000
## 1066 0.4775502 0.3136722 0.2500000
## 1067 0.4775502 0.3136722 0.2500000
## 1068 0.4775502 0.3136722 0.2500000
## 1069 0.4775502 0.3136722 0.2500000
## 1070 0.4775502 0.3136722 0.2500000
## 1071 0.4775502 0.3136722 0.2500000
## 1072 0.4775502 0.3136722 0.2500000
## 1073 0.4775502 0.3136722 0.2500000
## 1074 0.4775502 0.3136722 0.2500000
## 1075 0.4775502 0.3136722 0.2500000
## 1076 0.4775502 0.3136722 0.2500000
## 1077 0.4775502 0.3136722 0.2500000
## 1078 0.4775502 0.3136722 0.2500000
## 1079 0.4775502 0.3136722 0.2500000
## 1080 0.4775502 0.3136722 0.2500000
## 1081 0.4775502 0.3136722 0.2500000
## 1082 0.4775502 0.3136722 0.2500000
## 1083 0.4775502 0.3136722 0.2500000
## 1084 0.4775502 0.3136722 0.2500000
## 1085 0.4775502 0.3136722 0.2500000
## 1086 0.4775502 0.3136722 0.2500000
## 1087 0.4775502 0.3136722 0.2500000
## 1088 0.4775502 0.3136722 0.2500000
## 1089 0.4775502 0.3136722 0.2500000
## 1090 0.4775502 0.3136722 0.2500000
## 1091 0.4775502 0.3136722 0.2500000
## 1092 0.4775502 0.3136722 0.2500000
## 1093 0.4775502 0.3136722 0.2500000
## 1094 0.4775502 0.3136722 0.2500000
## 1095 0.4775502 0.3136722 0.2500000
## 1096 0.4775502 0.3136722 0.2500000
## 1097 0.4775502 0.3136722 0.2500000
## 1098 0.4775502 0.3136722 0.2500000
## 1099 0.4775502 0.3136722 0.2500000
## 1100 0.4775502 0.3136722 0.2500000
## 1101 0.4775502 0.3136722 0.2500000
## 1102 0.4775502 0.3136722 0.2500000
## 1103 0.4775502 0.3136722 0.2500000
## 1104 0.4775502 0.3136722 0.2500000
## 1105 0.4775502 0.3136722 0.2500000
## 1106 0.4775502 0.3136722 0.2500000
## 1107 0.4775502 0.3136722 0.2500000
## 1108 0.4775502 0.3136722 0.2500000
## 1109 0.4775502 0.3136722 0.2500000
## 1110 0.4775502 0.3136722 0.2500000
## 1111 0.4775502 0.3136722 0.2500000
## 1112 0.4775502 0.3136722 0.2500000
## 1113 0.4775502 0.3136722 0.2500000
## 1114 0.4775502 0.3136722 0.2500000
## 1115 0.4775502 0.3136722 0.2500000
## 1116 0.4775502 0.3136722 0.2500000
## 1117 0.4775502 0.3136722 0.2500000
## 1118 0.4775502 0.3136722 0.2500000
## 1119 0.4775502 0.3136722 0.2500000
## 1120 0.4775502 0.3136722 0.2500000
## 1121 0.4775502 0.3136722 0.2500000
## 1122 0.4775502 0.3136722 0.2500000
## 1123 0.4775502 0.3136722 0.2500000
## 1124 0.4775502 0.3136722 0.2500000
## 1125 0.4775502 0.3136722 0.2500000
## 1126 0.4775502 0.3136722 0.2500000
## 1127 0.4775502 0.3136722 0.2500000
## 1128 0.4775502 0.3136722 0.2500000
## 1129 0.4775502 0.3136722 0.2500000
## 1130 0.4775502 0.3136722 0.2500000
## 1131 0.4775502 0.3136722 0.2500000
## 1132 0.4775502 0.3136722 0.2500000
## 1133 0.4775502 0.3136722 0.2500000
## 1134 0.4775502 0.3136722 0.2500000
## 1135 0.4775502 0.3136722 0.2500000
## 1136 0.4775502 0.3136722 0.2500000
## 1137 0.4775502 0.3136722 0.2500000
## 1138 0.4775502 0.3136722 0.2500000
## 1139 0.4775502 0.3136722 0.2500000
## 1140 0.4775502 0.3136722 0.2500000
## 1141 0.4775502 0.3136722 0.2500000
## 1142 0.4775502 0.3136722 0.2500000
## 1143 0.4775502 0.3136722 0.2500000
## 1144 0.4775502 0.3136722 0.2500000
## 1145 0.4775502 0.3136722 0.2500000
## 1146 0.4775502 0.3136722 0.2500000
## 1147 0.4775502 0.3136722 0.2500000
## 1148 0.4775502 0.3136722 0.2500000
## 1149 0.4775502 0.3136722 0.2500000
## 1150 0.4775502 0.3136722 0.2500000
## 1151 0.4775502 0.3136722 0.2500000
## 1152 0.4775502 0.3136722 0.2500000
## 1153 0.4851643 0.3202752 0.1250000
## 1154 0.4851643 0.3202752 0.1250000
## 1155 0.4851643 0.3202752 0.1250000
## 1156 0.4851643 0.3202752 0.1250000
## 1157 0.4851643 0.3202752 0.1250000
## 1158 0.4851643 0.3202752 0.1250000
## 1159 0.4851643 0.3202752 0.1250000
## 1160 0.4851643 0.3202752 0.1250000
## 1161 0.4851643 0.3202752 0.1250000
## 1162 0.4851643 0.3202752 0.1250000
## 1163 0.4851643 0.3202752 0.1250000
## 1164 0.4851643 0.3202752 0.1250000
## 1165 0.4851643 0.3202752 0.1250000
## 1166 0.4851643 0.3202752 0.1250000
## 1167 0.4851643 0.3202752 0.1250000
## 1168 0.4851643 0.3202752 0.1250000
## 1169 0.4851643 0.3202752 0.1250000
## 1170 0.4851643 0.3202752 0.1250000
## 1171 0.4851643 0.3202752 0.1250000
## 1172 0.4851643 0.3202752 0.1250000
## 1173 0.4851643 0.3202752 0.1250000
## 1174 0.4851643 0.3202752 0.1250000
## 1175 0.4851643 0.3202752 0.1250000
## 1176 0.4851643 0.3202752 0.1250000
## 1177 0.4851643 0.3202752 0.1250000
## 1178 0.4851643 0.3202752 0.1250000
## 1179 0.4851643 0.3202752 0.1250000
## 1180 0.4851643 0.3202752 0.1250000
## 1181 0.4851643 0.3202752 0.1250000
## 1182 0.4851643 0.3202752 0.1250000
## 1183 0.4851643 0.3202752 0.1250000
## 1184 0.4851643 0.3202752 0.1250000
## 1185 0.4851643 0.3202752 0.1250000
## 1186 0.4851643 0.3202752 0.1250000
## 1187 0.4851643 0.3202752 0.1250000
## 1188 0.4851643 0.3202752 0.1250000
## 1189 0.4851643 0.3202752 0.1250000
## 1190 0.4851643 0.3202752 0.1250000
## 1191 0.4851643 0.3202752 0.1250000
## 1192 0.4851643 0.3202752 0.1250000
## 1193 0.4851643 0.3202752 0.1250000
## 1194 0.4851643 0.3202752 0.1250000
## 1195 0.4851643 0.3202752 0.1250000
## 1196 0.4851643 0.3202752 0.1250000
## 1197 0.4851643 0.3202752 0.1250000
## 1198 0.4851643 0.3202752 0.1250000
## 1199 0.4851643 0.3202752 0.1250000
## 1200 0.4851643 0.3202752 0.1250000
## 1201 0.4851643 0.3202752 0.1250000
## 1202 0.4851643 0.3202752 0.1250000
## 1203 0.4851643 0.3202752 0.1250000
## 1204 0.4851643 0.3202752 0.1250000
## 1205 0.4851643 0.3202752 0.1250000
## 1206 0.4851643 0.3202752 0.1250000
## 1207 0.4851643 0.3202752 0.1250000
## 1208 0.4851643 0.3202752 0.1250000
## 1209 0.4851643 0.3202752 0.1250000
## 1210 0.4851643 0.3202752 0.1250000
## 1211 0.4851643 0.3202752 0.1250000
## 1212 0.4851643 0.3202752 0.1250000
## 1213 0.4851643 0.3202752 0.1250000
## 1214 0.4851643 0.3202752 0.1250000
## 1215 0.4851643 0.3202752 0.1250000
## 1216 0.4851643 0.3202752 0.1250000
## 1217 0.4851643 0.3202752 0.1250000
## 1218 0.4851643 0.3202752 0.1250000
## 1219 0.4851643 0.3202752 0.1250000
## 1220 0.4851643 0.3202752 0.1250000
## 1221 0.4851643 0.3202752 0.1250000
## 1222 0.4851643 0.3202752 0.1250000
## 1223 0.4851643 0.3202752 0.1250000
## 1224 0.4851643 0.3202752 0.1250000
## 1225 0.4851643 0.3202752 0.1250000
## 1226 0.4851643 0.3202752 0.1250000
## 1227 0.4851643 0.3202752 0.1250000
## 1228 0.4851643 0.3202752 0.1250000
## 1229 0.4851643 0.3202752 0.1250000
## 1230 0.4851643 0.3202752 0.1250000
## 1231 0.4851643 0.3202752 0.1250000
## 1232 0.4851643 0.3202752 0.1250000
## 1233 0.4851643 0.3202752 0.1250000
## 1234 0.4851643 0.3202752 0.1250000
## 1235 0.4851643 0.3202752 0.1250000
## 1236 0.4851643 0.3202752 0.1250000
## 1237 0.4851643 0.3202752 0.1250000
## 1238 0.4851643 0.3202752 0.1250000
## 1239 0.4851643 0.3202752 0.1250000
## 1240 0.4851643 0.3202752 0.1250000
## 1241 0.4851643 0.3202752 0.1250000
## 1242 0.4851643 0.3202752 0.1250000
## 1243 0.4851643 0.3202752 0.1250000
## 1244 0.4851643 0.3202752 0.1250000
## 1245 0.4851643 0.3202752 0.1250000
## 1246 0.4851643 0.3202752 0.1250000
## 1247 0.4851643 0.3202752 0.1250000
## 1248 0.4851643 0.3202752 0.1250000
## 1249 0.4851643 0.3202752 0.1250000
## 1250 0.4851643 0.3202752 0.1250000
## 1251 0.4851643 0.3202752 0.1250000
## 1252 0.4851643 0.3202752 0.1250000
## 1253 0.4851643 0.3202752 0.1250000
## 1254 0.4851643 0.3202752 0.1250000
## 1255 0.4851643 0.3202752 0.1250000
## 1256 0.4851643 0.3202752 0.1250000
## 1257 0.4851643 0.3202752 0.1250000
## 1258 0.4851643 0.3202752 0.1250000
## 1259 0.4851643 0.3202752 0.1250000
## 1260 0.4851643 0.3202752 0.1250000
## 1261 0.4851643 0.3202752 0.1250000
## 1262 0.4851643 0.3202752 0.1250000
## 1263 0.4851643 0.3202752 0.1250000
## 1264 0.4851643 0.3202752 0.1250000
## 1265 0.4851643 0.3202752 0.1250000
## 1266 0.4851643 0.3202752 0.1250000
## 1267 0.4851643 0.3202752 0.1250000
## 1268 0.4851643 0.3202752 0.1250000
## 1269 0.4851643 0.3202752 0.1250000
## 1270 0.4851643 0.3202752 0.1250000
## 1271 0.4851643 0.3202752 0.1250000
## 1272 0.4851643 0.3202752 0.1250000
## 1273 0.4851643 0.3202752 0.1250000
## 1274 0.4851643 0.3202752 0.1250000
## 1275 0.4851643 0.3202752 0.1250000
## 1276 0.4851643 0.3202752 0.1250000
## 1277 0.4851643 0.3202752 0.1250000
## 1278 0.4851643 0.3202752 0.1250000
## 1279 0.4851643 0.3202752 0.1250000
## 1280 0.4851643 0.3202752 0.1250000
## 1281 0.4851643 0.3202752 0.1250000
## 1282 0.4851643 0.3202752 0.1250000
## 1283 0.4851643 0.3202752 0.1250000
## 1284 0.4851643 0.3202752 0.1250000
## 1285 0.4851643 0.3202752 0.1250000
## 1286 0.4851643 0.3202752 0.1250000
## 1287 0.4851643 0.3202752 0.1250000
## 1288 0.4851643 0.3202752 0.1250000
## 1289 0.4851643 0.3202752 0.1250000
## 1290 0.4851643 0.3202752 0.1250000
## 1291 0.4851643 0.3202752 0.1250000
## 1292 0.4851643 0.3202752 0.1250000
## 1293 0.4851643 0.3202752 0.1250000
## 1294 0.4851643 0.3202752 0.1250000
## 1295 0.4851643 0.3202752 0.1250000
## 1296 0.4851643 0.3202752 0.1250000
## 1297 0.4851643 0.3202752 0.1250000
## 1298 0.4851643 0.3202752 0.1250000
## 1299 0.4851643 0.3202752 0.1250000
## 1300 0.4851643 0.3202752 0.1250000
## 1301 0.4851643 0.3202752 0.1250000
## 1302 0.4851643 0.3202752 0.1250000
## 1303 0.4851643 0.3202752 0.1250000
## 1304 0.4851643 0.3202752 0.1250000
## 1305 0.4851643 0.3202752 0.1250000
## 1306 0.4851643 0.3202752 0.1250000
## 1307 0.4851643 0.3202752 0.1250000
## 1308 0.4851643 0.3202752 0.1250000
## 1309 0.4851643 0.3202752 0.1250000
## 1310 0.4851643 0.3202752 0.1250000
## 1311 0.4851643 0.3202752 0.1250000
## 1312 0.4851643 0.3202752 0.1250000
## 1313 0.4851643 0.3202752 0.1250000
## 1314 0.4851643 0.3202752 0.1250000
## 1315 0.4851643 0.3202752 0.1250000
## 1316 0.4851643 0.3202752 0.1250000
## 1317 0.4851643 0.3202752 0.1250000
## 1318 0.4851643 0.3202752 0.1250000
## 1319 0.4851643 0.3202752 0.1250000
## 1320 0.4851643 0.3202752 0.1250000
## 1321 0.4851643 0.3202752 0.1250000
## 1322 0.4851643 0.3202752 0.1250000
## 1323 0.4851643 0.3202752 0.1250000
## 1324 0.4851643 0.3202752 0.1250000
## 1325 0.4851643 0.3202752 0.1250000
## 1326 0.4851643 0.3202752 0.1250000
## 1327 0.4851643 0.3202752 0.1250000
## 1328 0.4851643 0.3202752 0.1250000
## 1329 0.4851643 0.3202752 0.1250000
## 1330 0.4851643 0.3202752 0.1250000
## 1331 0.4851643 0.3202752 0.1250000
## 1332 0.4851643 0.3202752 0.1250000
## 1333 0.4851643 0.3202752 0.1250000
## 1334 0.4851643 0.3202752 0.1250000
## 1335 0.4851643 0.3202752 0.1250000
## 1336 0.4851643 0.3202752 0.1250000
## 1337 0.4851643 0.3202752 0.1250000
## 1338 0.4851643 0.3202752 0.1250000
## 1339 0.4851643 0.3202752 0.1250000
## 1340 0.4851643 0.3202752 0.1250000
## 1341 0.4851643 0.3202752 0.1250000
## 1342 0.4851643 0.3202752 0.1250000
## 1343 0.4851643 0.3202752 0.1250000
## 1344 0.4851643 0.3202752 0.1250000
## 1345 0.5151939 0.3469772 0.1250000
## 1346 0.5151939 0.3469772 0.1250000
## 1347 0.5151939 0.3469772 0.1250000
## 1348 0.5151939 0.3469772 0.1250000
## 1349 0.5151939 0.3469772 0.1250000
## 1350 0.5151939 0.3469772 0.1250000
## 1351 0.5151939 0.3469772 0.1250000
## 1352 0.5151939 0.3469772 0.1250000
## 1353 0.5151939 0.3469772 0.1250000
## 1354 0.5151939 0.3469772 0.1250000
## 1355 0.5151939 0.3469772 0.1250000
## 1356 0.5151939 0.3469772 0.1250000
## 1357 0.5151939 0.3469772 0.1250000
## 1358 0.5151939 0.3469772 0.1250000
## 1359 0.5151939 0.3469772 0.1250000
## 1360 0.5151939 0.3469772 0.1250000
## 1361 0.5151939 0.3469772 0.1250000
## 1362 0.5151939 0.3469772 0.1250000
## 1363 0.5151939 0.3469772 0.1250000
## 1364 0.5151939 0.3469772 0.1250000
## 1365 0.5151939 0.3469772 0.1250000
## 1366 0.5151939 0.3469772 0.1250000
## 1367 0.5151939 0.3469772 0.1250000
## 1368 0.5151939 0.3469772 0.1250000
## 1369 0.5151939 0.3469772 0.1250000
## 1370 0.5151939 0.3469772 0.1250000
## 1371 0.5151939 0.3469772 0.1250000
## 1372 0.5151939 0.3469772 0.1250000
## 1373 0.5151939 0.3469772 0.1250000
## 1374 0.5151939 0.3469772 0.1250000
## 1375 0.5151939 0.3469772 0.1250000
## 1376 0.5151939 0.3469772 0.1250000
## 1377 0.5151939 0.3469772 0.1250000
## 1378 0.5151939 0.3469772 0.1250000
## 1379 0.5151939 0.3469772 0.1250000
## 1380 0.5151939 0.3469772 0.1250000
## 1381 0.5151939 0.3469772 0.1250000
## 1382 0.5151939 0.3469772 0.1250000
## 1383 0.5151939 0.3469772 0.1250000
## 1384 0.5151939 0.3469772 0.1250000
## 1385 0.5151939 0.3469772 0.1250000
## 1386 0.5151939 0.3469772 0.1250000
## 1387 0.5151939 0.3469772 0.1250000
## 1388 0.5151939 0.3469772 0.1250000
## 1389 0.5151939 0.3469772 0.1250000
## 1390 0.5151939 0.3469772 0.1250000
## 1391 0.5151939 0.3469772 0.1250000
## 1392 0.5151939 0.3469772 0.1250000
## 1393 0.5151939 0.3469772 0.1250000
## 1394 0.5151939 0.3469772 0.1250000
## 1395 0.5151939 0.3469772 0.1250000
## 1396 0.5151939 0.3469772 0.1250000
## 1397 0.5151939 0.3469772 0.1250000
## 1398 0.5151939 0.3469772 0.1250000
## 1399 0.5151939 0.3469772 0.1250000
## 1400 0.5151939 0.3469772 0.1250000
## 1401 0.5151939 0.3469772 0.1250000
## 1402 0.5151939 0.3469772 0.1250000
## 1403 0.5151939 0.3469772 0.1250000
## 1404 0.5151939 0.3469772 0.1250000
## 1405 0.5151939 0.3469772 0.1250000
## 1406 0.5151939 0.3469772 0.1250000
## 1407 0.5151939 0.3469772 0.1250000
## 1408 0.5151939 0.3469772 0.1250000
## 1409 0.5151939 0.3469772 0.1250000
## 1410 0.5151939 0.3469772 0.1250000
## 1411 0.5151939 0.3469772 0.1250000
## 1412 0.5151939 0.3469772 0.1250000
## 1413 0.5151939 0.3469772 0.1250000
## 1414 0.5151939 0.3469772 0.1250000
## 1415 0.5151939 0.3469772 0.1250000
## 1416 0.5151939 0.3469772 0.1250000
## 1417 0.5151939 0.3469772 0.1250000
## 1418 0.5151939 0.3469772 0.1250000
## 1419 0.5151939 0.3469772 0.1250000
## 1420 0.5151939 0.3469772 0.1250000
## 1421 0.5151939 0.3469772 0.1250000
## 1422 0.5151939 0.3469772 0.1250000
## 1423 0.5151939 0.3469772 0.1250000
## 1424 0.5151939 0.3469772 0.1250000
## 1425 0.5151939 0.3469772 0.1250000
## 1426 0.5151939 0.3469772 0.1250000
## 1427 0.5151939 0.3469772 0.1250000
## 1428 0.5151939 0.3469772 0.1250000
## 1429 0.5151939 0.3469772 0.1250000
## 1430 0.5151939 0.3469772 0.1250000
## 1431 0.5151939 0.3469772 0.1250000
## 1432 0.5151939 0.3469772 0.1250000
## 1433 0.5151939 0.3469772 0.1250000
## 1434 0.5151939 0.3469772 0.1250000
## 1435 0.5151939 0.3469772 0.1250000
## 1436 0.5151939 0.3469772 0.1250000
## 1437 0.5151939 0.3469772 0.1250000
## 1438 0.5151939 0.3469772 0.1250000
## 1439 0.5151939 0.3469772 0.1250000
## 1440 0.5151939 0.3469772 0.1250000
## 1441 0.5151939 0.3469772 0.1250000
## 1442 0.5151939 0.3469772 0.1250000
## 1443 0.5151939 0.3469772 0.1250000
## 1444 0.5151939 0.3469772 0.1250000
## 1445 0.5151939 0.3469772 0.1250000
## 1446 0.5151939 0.3469772 0.1250000
## 1447 0.5151939 0.3469772 0.1250000
## 1448 0.5151939 0.3469772 0.1250000
## 1449 0.5151939 0.3469772 0.1250000
## 1450 0.5151939 0.3469772 0.1250000
## 1451 0.5151939 0.3469772 0.1250000
## 1452 0.5151939 0.3469772 0.1250000
## 1453 0.5151939 0.3469772 0.1250000
## 1454 0.5151939 0.3469772 0.1250000
## 1455 0.5151939 0.3469772 0.1250000
## 1456 0.5151939 0.3469772 0.1250000
## 1457 0.5151939 0.3469772 0.1250000
## 1458 0.5151939 0.3469772 0.1250000
## 1459 0.5151939 0.3469772 0.1250000
## 1460 0.5151939 0.3469772 0.1250000
## 1461 0.5151939 0.3469772 0.1250000
## 1462 0.5151939 0.3469772 0.1250000
## 1463 0.5151939 0.3469772 0.1250000
## 1464 0.5151939 0.3469772 0.1250000
## 1465 0.5151939 0.3469772 0.1250000
## 1466 0.5151939 0.3469772 0.1250000
## 1467 0.5151939 0.3469772 0.1250000
## 1468 0.5151939 0.3469772 0.1250000
## 1469 0.5151939 0.3469772 0.1250000
## 1470 0.5151939 0.3469772 0.1250000
## 1471 0.5151939 0.3469772 0.1250000
## 1472 0.5151939 0.3469772 0.1250000
## 1473 0.5151939 0.3469772 0.1250000
## 1474 0.5151939 0.3469772 0.1250000
## 1475 0.5151939 0.3469772 0.1250000
## 1476 0.5151939 0.3469772 0.1250000
## 1477 0.5151939 0.3469772 0.1250000
## 1478 0.5151939 0.3469772 0.1250000
## 1479 0.5151939 0.3469772 0.1250000
## 1480 0.5151939 0.3469772 0.1250000
## 1481 0.5151939 0.3469772 0.1250000
## 1482 0.5151939 0.3469772 0.1250000
## 1483 0.5151939 0.3469772 0.1250000
## 1484 0.5151939 0.3469772 0.1250000
## 1485 0.5151939 0.3469772 0.1250000
## 1486 0.5151939 0.3469772 0.1250000
## 1487 0.5151939 0.3469772 0.1250000
## 1488 0.5151939 0.3469772 0.1250000
## 1489 0.5151939 0.3469772 0.1250000
## 1490 0.5151939 0.3469772 0.1250000
## 1491 0.5151939 0.3469772 0.1250000
## 1492 0.5151939 0.3469772 0.1250000
## 1493 0.5151939 0.3469772 0.1250000
## 1494 0.5151939 0.3469772 0.1250000
## 1495 0.5151939 0.3469772 0.1250000
## 1496 0.5151939 0.3469772 0.1250000
## 1497 0.5151939 0.3469772 0.1250000
## 1498 0.5151939 0.3469772 0.1250000
## 1499 0.5151939 0.3469772 0.1250000
## 1500 0.5151939 0.3469772 0.1250000
## 1501 0.5151939 0.3469772 0.1250000
## 1502 0.5151939 0.3469772 0.1250000
## 1503 0.5151939 0.3469772 0.1250000
## 1504 0.5151939 0.3469772 0.1250000
## 1505 0.5151939 0.3469772 0.1250000
## 1506 0.5151939 0.3469772 0.1250000
## 1507 0.5151939 0.3469772 0.1250000
## 1508 0.5151939 0.3469772 0.1250000
## 1509 0.5151939 0.3469772 0.1250000
## 1510 0.5151939 0.3469772 0.1250000
## 1511 0.5151939 0.3469772 0.1250000
## 1512 0.5151939 0.3469772 0.1250000
## 1513 0.5151939 0.3469772 0.1250000
## 1514 0.5151939 0.3469772 0.1250000
## 1515 0.5151939 0.3469772 0.1250000
## 1516 0.5151939 0.3469772 0.1250000
## 1517 0.5151939 0.3469772 0.1250000
## 1518 0.5151939 0.3469772 0.1250000
## 1519 0.5151939 0.3469772 0.1250000
## 1520 0.5151939 0.3469772 0.1250000
## 1521 0.5151939 0.3469772 0.1250000
## 1522 0.5151939 0.3469772 0.1250000
## 1523 0.5151939 0.3469772 0.1250000
## 1524 0.5151939 0.3469772 0.1250000
## 1525 0.5151939 0.3469772 0.1250000
## 1526 0.5151939 0.3469772 0.1250000
## 1527 0.5151939 0.3469772 0.1250000
## 1528 0.5151939 0.3469772 0.1250000
## 1529 0.5151939 0.3469772 0.1250000
## 1530 0.5151939 0.3469772 0.1250000
## 1531 0.5151939 0.3469772 0.1250000
## 1532 0.5151939 0.3469772 0.1250000
## 1533 0.5151939 0.3469772 0.1250000
## 1534 0.5151939 0.3469772 0.1250000
## 1535 0.5151939 0.3469772 0.1250000
## 1536 0.5151939 0.3469772 0.1250000
## 1537 0.3935303 0.2449659 0.1428571
## 1538 0.3935303 0.2449659 0.1428571
## 1539 0.3935303 0.2449659 0.1428571
## 1540 0.3935303 0.2449659 0.1428571
## 1541 0.3935303 0.2449659 0.1428571
## 1542 0.3935303 0.2449659 0.1428571
## 1543 0.3935303 0.2449659 0.1428571
## 1544 0.3935303 0.2449659 0.1428571
## 1545 0.3935303 0.2449659 0.1428571
## 1546 0.3935303 0.2449659 0.1428571
## 1547 0.3935303 0.2449659 0.1428571
## 1548 0.3935303 0.2449659 0.1428571
## 1549 0.3935303 0.2449659 0.1428571
## 1550 0.3935303 0.2449659 0.1428571
## 1551 0.3935303 0.2449659 0.1428571
## 1552 0.3935303 0.2449659 0.1428571
## 1553 0.3935303 0.2449659 0.1428571
## 1554 0.3935303 0.2449659 0.1428571
## 1555 0.3935303 0.2449659 0.1428571
## 1556 0.3935303 0.2449659 0.1428571
## 1557 0.3935303 0.2449659 0.1428571
## 1558 0.3935303 0.2449659 0.1428571
## 1559 0.3935303 0.2449659 0.1428571
## 1560 0.3935303 0.2449659 0.1428571
## 1561 0.3935303 0.2449659 0.1428571
## 1562 0.3935303 0.2449659 0.1428571
## 1563 0.3935303 0.2449659 0.1428571
## 1564 0.3935303 0.2449659 0.1428571
## 1565 0.3935303 0.2449659 0.1428571
## 1566 0.3935303 0.2449659 0.1428571
## 1567 0.3935303 0.2449659 0.1428571
## 1568 0.3935303 0.2449659 0.1428571
## 1569 0.3935303 0.2449659 0.1428571
## 1570 0.3935303 0.2449659 0.1428571
## 1571 0.3935303 0.2449659 0.1428571
## 1572 0.3935303 0.2449659 0.1428571
## 1573 0.3935303 0.2449659 0.1428571
## 1574 0.3935303 0.2449659 0.1428571
## 1575 0.3935303 0.2449659 0.1428571
## 1576 0.3935303 0.2449659 0.1428571
## 1577 0.3935303 0.2449659 0.1428571
## 1578 0.3935303 0.2449659 0.1428571
## 1579 0.3935303 0.2449659 0.1428571
## 1580 0.3935303 0.2449659 0.1428571
## 1581 0.3935303 0.2449659 0.1428571
## 1582 0.3935303 0.2449659 0.1428571
## 1583 0.3935303 0.2449659 0.1428571
## 1584 0.3935303 0.2449659 0.1428571
## 1585 0.3935303 0.2449659 0.1428571
## 1586 0.3935303 0.2449659 0.1428571
## 1587 0.3935303 0.2449659 0.1428571
## 1588 0.3935303 0.2449659 0.1428571
## 1589 0.3935303 0.2449659 0.1428571
## 1590 0.3935303 0.2449659 0.1428571
## 1591 0.3935303 0.2449659 0.1428571
## 1592 0.3935303 0.2449659 0.1428571
## 1593 0.3935303 0.2449659 0.1428571
## 1594 0.3935303 0.2449659 0.1428571
## 1595 0.3935303 0.2449659 0.1428571
## 1596 0.3935303 0.2449659 0.1428571
## 1597 0.3935303 0.2449659 0.1428571
## 1598 0.3935303 0.2449659 0.1428571
## 1599 0.3935303 0.2449659 0.1428571
## 1600 0.3935303 0.2449659 0.1428571
## 1601 0.3935303 0.2449659 0.1428571
## 1602 0.3935303 0.2449659 0.1428571
## 1603 0.3935303 0.2449659 0.1428571
## 1604 0.3935303 0.2449659 0.1428571
## 1605 0.3935303 0.2449659 0.1428571
## 1606 0.3935303 0.2449659 0.1428571
## 1607 0.3935303 0.2449659 0.1428571
## 1608 0.3935303 0.2449659 0.1428571
## 1609 0.3935303 0.2449659 0.1428571
## 1610 0.3935303 0.2449659 0.1428571
## 1611 0.3935303 0.2449659 0.1428571
## 1612 0.3935303 0.2449659 0.1428571
## 1613 0.3935303 0.2449659 0.1428571
## 1614 0.3935303 0.2449659 0.1428571
## 1615 0.3935303 0.2449659 0.1428571
## 1616 0.3935303 0.2449659 0.1428571
## 1617 0.3935303 0.2449659 0.1428571
## 1618 0.3935303 0.2449659 0.1428571
## 1619 0.3935303 0.2449659 0.1428571
## 1620 0.3935303 0.2449659 0.1428571
## 1621 0.3935303 0.2449659 0.1428571
## 1622 0.3935303 0.2449659 0.1428571
## 1623 0.3935303 0.2449659 0.1428571
## 1624 0.3935303 0.2449659 0.1428571
## 1625 0.3935303 0.2449659 0.1428571
## 1626 0.3935303 0.2449659 0.1428571
## 1627 0.3935303 0.2449659 0.1428571
## 1628 0.3935303 0.2449659 0.1428571
## 1629 0.3935303 0.2449659 0.1428571
## 1630 0.3935303 0.2449659 0.1428571
## 1631 0.3935303 0.2449659 0.1428571
## 1632 0.3935303 0.2449659 0.1428571
## 1633 0.3935303 0.2449659 0.1428571
## 1634 0.3935303 0.2449659 0.1428571
## 1635 0.3935303 0.2449659 0.1428571
## 1636 0.3935303 0.2449659 0.1428571
## 1637 0.3935303 0.2449659 0.1428571
## 1638 0.3935303 0.2449659 0.1428571
## 1639 0.3935303 0.2449659 0.1428571
## 1640 0.3935303 0.2449659 0.1428571
## 1641 0.3935303 0.2449659 0.1428571
## 1642 0.3935303 0.2449659 0.1428571
## 1643 0.3935303 0.2449659 0.1428571
## 1644 0.3935303 0.2449659 0.1428571
## 1645 0.3935303 0.2449659 0.1428571
## 1646 0.3935303 0.2449659 0.1428571
## 1647 0.3935303 0.2449659 0.1428571
## 1648 0.3935303 0.2449659 0.1428571
## 1649 0.3935303 0.2449659 0.1428571
## 1650 0.3935303 0.2449659 0.1428571
## 1651 0.3935303 0.2449659 0.1428571
## 1652 0.3935303 0.2449659 0.1428571
## 1653 0.3935303 0.2449659 0.1428571
## 1654 0.3935303 0.2449659 0.1428571
## 1655 0.3935303 0.2449659 0.1428571
## 1656 0.3935303 0.2449659 0.1428571
## 1657 0.3935303 0.2449659 0.1428571
## 1658 0.3935303 0.2449659 0.1428571
## 1659 0.3935303 0.2449659 0.1428571
## 1660 0.3935303 0.2449659 0.1428571
## 1661 0.3935303 0.2449659 0.1428571
## 1662 0.3935303 0.2449659 0.1428571
## 1663 0.3935303 0.2449659 0.1428571
## 1664 0.3935303 0.2449659 0.1428571
## 1665 0.3935303 0.2449659 0.1428571
## 1666 0.3935303 0.2449659 0.1428571
## 1667 0.3935303 0.2449659 0.1428571
## 1668 0.3935303 0.2449659 0.1428571
## 1669 0.3935303 0.2449659 0.1428571
## 1670 0.3935303 0.2449659 0.1428571
## 1671 0.3935303 0.2449659 0.1428571
## 1672 0.3935303 0.2449659 0.1428571
## 1673 0.3935303 0.2449659 0.1428571
## 1674 0.3935303 0.2449659 0.1428571
## 1675 0.3935303 0.2449659 0.1428571
## 1676 0.3935303 0.2449659 0.1428571
## 1677 0.3935303 0.2449659 0.1428571
## 1678 0.3935303 0.2449659 0.1428571
## 1679 0.3935303 0.2449659 0.1428571
## 1680 0.3935303 0.2449659 0.1428571
## 1681 0.3935303 0.2449659 0.1428571
## 1682 0.3935303 0.2449659 0.1428571
## 1683 0.3935303 0.2449659 0.1428571
## 1684 0.3935303 0.2449659 0.1428571
## 1685 0.3935303 0.2449659 0.1428571
## 1686 0.3935303 0.2449659 0.1428571
## 1687 0.3935303 0.2449659 0.1428571
## 1688 0.3935303 0.2449659 0.1428571
## 1689 0.3935303 0.2449659 0.1428571
## 1690 0.3935303 0.2449659 0.1428571
## 1691 0.3935303 0.2449659 0.1428571
## 1692 0.3935303 0.2449659 0.1428571
## 1693 0.3935303 0.2449659 0.1428571
## 1694 0.3935303 0.2449659 0.1428571
## 1695 0.3935303 0.2449659 0.1428571
## 1696 0.3935303 0.2449659 0.1428571
## 1697 0.3935303 0.2449659 0.1428571
## 1698 0.3935303 0.2449659 0.1428571
## 1699 0.3935303 0.2449659 0.1428571
## 1700 0.3935303 0.2449659 0.1428571
## 1701 0.3935303 0.2449659 0.1428571
## 1702 0.3935303 0.2449659 0.1428571
## 1703 0.3935303 0.2449659 0.1428571
## 1704 0.3935303 0.2449659 0.1428571
## 1705 0.3935303 0.2449659 0.1428571
## 1706 0.3935303 0.2449659 0.1428571
## 1707 0.3935303 0.2449659 0.1428571
## 1708 0.3935303 0.2449659 0.1428571
## 1709 0.3935303 0.2449659 0.1428571
## 1710 0.3935303 0.2449659 0.1428571
## 1711 0.3935303 0.2449659 0.1428571
## 1712 0.3935303 0.2449659 0.1428571
## 1713 0.3935303 0.2449659 0.1428571
## 1714 0.3935303 0.2449659 0.1428571
## 1715 0.3935303 0.2449659 0.1428571
## 1716 0.3935303 0.2449659 0.1428571
## 1717 0.3935303 0.2449659 0.1428571
## 1718 0.3935303 0.2449659 0.1428571
## 1719 0.3935303 0.2449659 0.1428571
## 1720 0.3935303 0.2449659 0.1428571
## 1721 0.3935303 0.2449659 0.1428571
## 1722 0.3935303 0.2449659 0.1428571
## 1723 0.3935303 0.2449659 0.1428571
## 1724 0.3935303 0.2449659 0.1428571
## 1725 0.3935303 0.2449659 0.1428571
## 1726 0.3935303 0.2449659 0.1428571
## 1727 0.3935303 0.2449659 0.1428571
## 1728 0.3935303 0.2449659 0.1428571
## 1729 0.5241108 0.3551153 0.0000000
## 1730 0.5241108 0.3551153 0.0000000
## 1731 0.5241108 0.3551153 0.0000000
## 1732 0.5241108 0.3551153 0.0000000
## 1733 0.5241108 0.3551153 0.0000000
## 1734 0.5241108 0.3551153 0.0000000
## 1735 0.5241108 0.3551153 0.0000000
## 1736 0.5241108 0.3551153 0.0000000
## 1737 0.5241108 0.3551153 0.0000000
## 1738 0.5241108 0.3551153 0.0000000
## 1739 0.5241108 0.3551153 0.0000000
## 1740 0.5241108 0.3551153 0.0000000
## 1741 0.5241108 0.3551153 0.0000000
## 1742 0.5241108 0.3551153 0.0000000
## 1743 0.5241108 0.3551153 0.0000000
## 1744 0.5241108 0.3551153 0.0000000
## 1745 0.5241108 0.3551153 0.0000000
## 1746 0.5241108 0.3551153 0.0000000
## 1747 0.5241108 0.3551153 0.0000000
## 1748 0.5241108 0.3551153 0.0000000
## 1749 0.5241108 0.3551153 0.0000000
## 1750 0.5241108 0.3551153 0.0000000
## 1751 0.5241108 0.3551153 0.0000000
## 1752 0.5241108 0.3551153 0.0000000
## 1753 0.5241108 0.3551153 0.0000000
## 1754 0.5241108 0.3551153 0.0000000
## 1755 0.5241108 0.3551153 0.0000000
## 1756 0.5241108 0.3551153 0.0000000
## 1757 0.5241108 0.3551153 0.0000000
## 1758 0.5241108 0.3551153 0.0000000
## 1759 0.5241108 0.3551153 0.0000000
## 1760 0.5241108 0.3551153 0.0000000
## 1761 0.5241108 0.3551153 0.0000000
## 1762 0.5241108 0.3551153 0.0000000
## 1763 0.5241108 0.3551153 0.0000000
## 1764 0.5241108 0.3551153 0.0000000
## 1765 0.5241108 0.3551153 0.0000000
## 1766 0.5241108 0.3551153 0.0000000
## 1767 0.5241108 0.3551153 0.0000000
## 1768 0.5241108 0.3551153 0.0000000
## 1769 0.5241108 0.3551153 0.0000000
## 1770 0.5241108 0.3551153 0.0000000
## 1771 0.5241108 0.3551153 0.0000000
## 1772 0.5241108 0.3551153 0.0000000
## 1773 0.5241108 0.3551153 0.0000000
## 1774 0.5241108 0.3551153 0.0000000
## 1775 0.5241108 0.3551153 0.0000000
## 1776 0.5241108 0.3551153 0.0000000
## 1777 0.5241108 0.3551153 0.0000000
## 1778 0.5241108 0.3551153 0.0000000
## 1779 0.5241108 0.3551153 0.0000000
## 1780 0.5241108 0.3551153 0.0000000
## 1781 0.5241108 0.3551153 0.0000000
## 1782 0.5241108 0.3551153 0.0000000
## 1783 0.5241108 0.3551153 0.0000000
## 1784 0.5241108 0.3551153 0.0000000
## 1785 0.5241108 0.3551153 0.0000000
## 1786 0.5241108 0.3551153 0.0000000
## 1787 0.5241108 0.3551153 0.0000000
## 1788 0.5241108 0.3551153 0.0000000
## 1789 0.5241108 0.3551153 0.0000000
## 1790 0.5241108 0.3551153 0.0000000
## 1791 0.5241108 0.3551153 0.0000000
## 1792 0.5241108 0.3551153 0.0000000
## 1793 0.5241108 0.3551153 0.0000000
## 1794 0.5241108 0.3551153 0.0000000
## 1795 0.5241108 0.3551153 0.0000000
## 1796 0.5241108 0.3551153 0.0000000
## 1797 0.5241108 0.3551153 0.0000000
## 1798 0.5241108 0.3551153 0.0000000
## 1799 0.5241108 0.3551153 0.0000000
## 1800 0.5241108 0.3551153 0.0000000
## 1801 0.5241108 0.3551153 0.0000000
## 1802 0.5241108 0.3551153 0.0000000
## 1803 0.5241108 0.3551153 0.0000000
## 1804 0.5241108 0.3551153 0.0000000
## 1805 0.5241108 0.3551153 0.0000000
## 1806 0.5241108 0.3551153 0.0000000
## 1807 0.5241108 0.3551153 0.0000000
## 1808 0.5241108 0.3551153 0.0000000
## 1809 0.5241108 0.3551153 0.0000000
## 1810 0.5241108 0.3551153 0.0000000
## 1811 0.5241108 0.3551153 0.0000000
## 1812 0.5241108 0.3551153 0.0000000
## 1813 0.5241108 0.3551153 0.0000000
## 1814 0.5241108 0.3551153 0.0000000
## 1815 0.5241108 0.3551153 0.0000000
## 1816 0.5241108 0.3551153 0.0000000
## 1817 0.5241108 0.3551153 0.0000000
## 1818 0.5241108 0.3551153 0.0000000
## 1819 0.5241108 0.3551153 0.0000000
## 1820 0.5241108 0.3551153 0.0000000
## 1821 0.5241108 0.3551153 0.0000000
## 1822 0.5241108 0.3551153 0.0000000
## 1823 0.5241108 0.3551153 0.0000000
## 1824 0.5241108 0.3551153 0.0000000
## 1825 0.5241108 0.3551153 0.0000000
## 1826 0.5241108 0.3551153 0.0000000
## 1827 0.5241108 0.3551153 0.0000000
## 1828 0.5241108 0.3551153 0.0000000
## 1829 0.5241108 0.3551153 0.0000000
## 1830 0.5241108 0.3551153 0.0000000
## 1831 0.5241108 0.3551153 0.0000000
## 1832 0.5241108 0.3551153 0.0000000
## 1833 0.5241108 0.3551153 0.0000000
## 1834 0.5241108 0.3551153 0.0000000
## 1835 0.5241108 0.3551153 0.0000000
## 1836 0.5241108 0.3551153 0.0000000
## 1837 0.5241108 0.3551153 0.0000000
## 1838 0.5241108 0.3551153 0.0000000
## 1839 0.5241108 0.3551153 0.0000000
## 1840 0.5241108 0.3551153 0.0000000
## 1841 0.5241108 0.3551153 0.0000000
## 1842 0.5241108 0.3551153 0.0000000
## 1843 0.5241108 0.3551153 0.0000000
## 1844 0.5241108 0.3551153 0.0000000
## 1845 0.5241108 0.3551153 0.0000000
## 1846 0.5241108 0.3551153 0.0000000
## 1847 0.5241108 0.3551153 0.0000000
## 1848 0.5241108 0.3551153 0.0000000
## 1849 0.5241108 0.3551153 0.0000000
## 1850 0.5241108 0.3551153 0.0000000
## 1851 0.5241108 0.3551153 0.0000000
## 1852 0.5241108 0.3551153 0.0000000
## 1853 0.5241108 0.3551153 0.0000000
## 1854 0.5241108 0.3551153 0.0000000
## 1855 0.5241108 0.3551153 0.0000000
## 1856 0.5241108 0.3551153 0.0000000
## 1857 0.5241108 0.3551153 0.0000000
## 1858 0.5241108 0.3551153 0.0000000
## 1859 0.5241108 0.3551153 0.0000000
## 1860 0.5241108 0.3551153 0.0000000
## 1861 0.5241108 0.3551153 0.0000000
## 1862 0.5241108 0.3551153 0.0000000
## 1863 0.5241108 0.3551153 0.0000000
## 1864 0.5241108 0.3551153 0.0000000
## 1865 0.5241108 0.3551153 0.0000000
## 1866 0.5241108 0.3551153 0.0000000
## 1867 0.5241108 0.3551153 0.0000000
## 1868 0.5241108 0.3551153 0.0000000
## 1869 0.5241108 0.3551153 0.0000000
## 1870 0.5241108 0.3551153 0.0000000
## 1871 0.5241108 0.3551153 0.0000000
## 1872 0.5241108 0.3551153 0.0000000
## 1873 0.5241108 0.3551153 0.0000000
## 1874 0.5241108 0.3551153 0.0000000
## 1875 0.5241108 0.3551153 0.0000000
## 1876 0.5241108 0.3551153 0.0000000
## 1877 0.5241108 0.3551153 0.0000000
## 1878 0.5241108 0.3551153 0.0000000
## 1879 0.5241108 0.3551153 0.0000000
## 1880 0.5241108 0.3551153 0.0000000
## 1881 0.5241108 0.3551153 0.0000000
## 1882 0.5241108 0.3551153 0.0000000
## 1883 0.5241108 0.3551153 0.0000000
## 1884 0.5241108 0.3551153 0.0000000
## 1885 0.5241108 0.3551153 0.0000000
## 1886 0.5241108 0.3551153 0.0000000
## 1887 0.5241108 0.3551153 0.0000000
## 1888 0.5241108 0.3551153 0.0000000
## 1889 0.5241108 0.3551153 0.0000000
## 1890 0.5241108 0.3551153 0.0000000
## 1891 0.5241108 0.3551153 0.0000000
## 1892 0.5241108 0.3551153 0.0000000
## 1893 0.5241108 0.3551153 0.0000000
## 1894 0.5241108 0.3551153 0.0000000
## 1895 0.5241108 0.3551153 0.0000000
## 1896 0.5241108 0.3551153 0.0000000
## 1897 0.5241108 0.3551153 0.0000000
## 1898 0.5241108 0.3551153 0.0000000
## 1899 0.5241108 0.3551153 0.0000000
## 1900 0.5241108 0.3551153 0.0000000
## 1901 0.5241108 0.3551153 0.0000000
## 1902 0.5241108 0.3551153 0.0000000
## 1903 0.5241108 0.3551153 0.0000000
## 1904 0.5241108 0.3551153 0.0000000
## 1905 0.5241108 0.3551153 0.0000000
## 1906 0.5241108 0.3551153 0.0000000
## 1907 0.5241108 0.3551153 0.0000000
## 1908 0.5241108 0.3551153 0.0000000
## 1909 0.5241108 0.3551153 0.0000000
## 1910 0.5241108 0.3551153 0.0000000
## 1911 0.5241108 0.3551153 0.0000000
## 1912 0.5241108 0.3551153 0.0000000
## 1913 0.5241108 0.3551153 0.0000000
## 1914 0.5241108 0.3551153 0.0000000
## 1915 0.5241108 0.3551153 0.0000000
## 1916 0.5241108 0.3551153 0.0000000
## 1917 0.5241108 0.3551153 0.0000000
## 1918 0.5241108 0.3551153 0.0000000
## 1919 0.5241108 0.3551153 0.0000000
## 1920 0.5241108 0.3551153 0.0000000
## 1921 0.4647482 0.3027179 0.0000000
## 1922 0.4647482 0.3027179 0.0000000
## 1923 0.4647482 0.3027179 0.0000000
## 1924 0.4647482 0.3027179 0.0000000
## 1925 0.4647482 0.3027179 0.0000000
## 1926 0.4647482 0.3027179 0.0000000
## 1927 0.4647482 0.3027179 0.0000000
## 1928 0.4647482 0.3027179 0.0000000
## 1929 0.4647482 0.3027179 0.0000000
## 1930 0.4647482 0.3027179 0.0000000
## 1931 0.4647482 0.3027179 0.0000000
## 1932 0.4647482 0.3027179 0.0000000
## 1933 0.4647482 0.3027179 0.0000000
## 1934 0.4647482 0.3027179 0.0000000
## 1935 0.4647482 0.3027179 0.0000000
## 1936 0.4647482 0.3027179 0.0000000
## 1937 0.4647482 0.3027179 0.0000000
## 1938 0.4647482 0.3027179 0.0000000
## 1939 0.4647482 0.3027179 0.0000000
## 1940 0.4647482 0.3027179 0.0000000
## 1941 0.4647482 0.3027179 0.0000000
## 1942 0.4647482 0.3027179 0.0000000
## 1943 0.4647482 0.3027179 0.0000000
## 1944 0.4647482 0.3027179 0.0000000
## 1945 0.4647482 0.3027179 0.0000000
## 1946 0.4647482 0.3027179 0.0000000
## 1947 0.4647482 0.3027179 0.0000000
## 1948 0.4647482 0.3027179 0.0000000
## 1949 0.4647482 0.3027179 0.0000000
## 1950 0.4647482 0.3027179 0.0000000
## 1951 0.4647482 0.3027179 0.0000000
## 1952 0.4647482 0.3027179 0.0000000
## 1953 0.4647482 0.3027179 0.0000000
## 1954 0.4647482 0.3027179 0.0000000
## 1955 0.4647482 0.3027179 0.0000000
## 1956 0.4647482 0.3027179 0.0000000
## 1957 0.4647482 0.3027179 0.0000000
## 1958 0.4647482 0.3027179 0.0000000
## 1959 0.4647482 0.3027179 0.0000000
## 1960 0.4647482 0.3027179 0.0000000
## 1961 0.4647482 0.3027179 0.0000000
## 1962 0.4647482 0.3027179 0.0000000
## 1963 0.4647482 0.3027179 0.0000000
## 1964 0.4647482 0.3027179 0.0000000
## 1965 0.4647482 0.3027179 0.0000000
## 1966 0.4647482 0.3027179 0.0000000
## 1967 0.4647482 0.3027179 0.0000000
## 1968 0.4647482 0.3027179 0.0000000
## 1969 0.4647482 0.3027179 0.0000000
## 1970 0.4647482 0.3027179 0.0000000
## 1971 0.4647482 0.3027179 0.0000000
## 1972 0.4647482 0.3027179 0.0000000
## 1973 0.4647482 0.3027179 0.0000000
## 1974 0.4647482 0.3027179 0.0000000
## 1975 0.4647482 0.3027179 0.0000000
## 1976 0.4647482 0.3027179 0.0000000
## 1977 0.4647482 0.3027179 0.0000000
## 1978 0.4647482 0.3027179 0.0000000
## 1979 0.4647482 0.3027179 0.0000000
## 1980 0.4647482 0.3027179 0.0000000
## 1981 0.4647482 0.3027179 0.0000000
## 1982 0.4647482 0.3027179 0.0000000
## 1983 0.4647482 0.3027179 0.0000000
## 1984 0.4647482 0.3027179 0.0000000
## 1985 0.4647482 0.3027179 0.0000000
## 1986 0.4647482 0.3027179 0.0000000
## 1987 0.4647482 0.3027179 0.0000000
## 1988 0.4647482 0.3027179 0.0000000
## 1989 0.4647482 0.3027179 0.0000000
## 1990 0.4647482 0.3027179 0.0000000
## 1991 0.4647482 0.3027179 0.0000000
## 1992 0.4647482 0.3027179 0.0000000
## 1993 0.4647482 0.3027179 0.0000000
## 1994 0.4647482 0.3027179 0.0000000
## 1995 0.4647482 0.3027179 0.0000000
## 1996 0.4647482 0.3027179 0.0000000
## 1997 0.4647482 0.3027179 0.0000000
## 1998 0.4647482 0.3027179 0.0000000
## 1999 0.4647482 0.3027179 0.0000000
## 2000 0.4647482 0.3027179 0.0000000
## 2001 0.4647482 0.3027179 0.0000000
## 2002 0.4647482 0.3027179 0.0000000
## 2003 0.4647482 0.3027179 0.0000000
## 2004 0.4647482 0.3027179 0.0000000
## 2005 0.4647482 0.3027179 0.0000000
## 2006 0.4647482 0.3027179 0.0000000
## 2007 0.4647482 0.3027179 0.0000000
## 2008 0.4647482 0.3027179 0.0000000
## 2009 0.4647482 0.3027179 0.0000000
## 2010 0.4647482 0.3027179 0.0000000
## 2011 0.4647482 0.3027179 0.0000000
## 2012 0.4647482 0.3027179 0.0000000
## 2013 0.4647482 0.3027179 0.0000000
## 2014 0.4647482 0.3027179 0.0000000
## 2015 0.4647482 0.3027179 0.0000000
## 2016 0.4647482 0.3027179 0.0000000
## 2017 0.4647482 0.3027179 0.0000000
## 2018 0.4647482 0.3027179 0.0000000
## 2019 0.4647482 0.3027179 0.0000000
## 2020 0.4647482 0.3027179 0.0000000
## 2021 0.4647482 0.3027179 0.0000000
## 2022 0.4647482 0.3027179 0.0000000
## 2023 0.4647482 0.3027179 0.0000000
## 2024 0.4647482 0.3027179 0.0000000
## 2025 0.4647482 0.3027179 0.0000000
## 2026 0.4647482 0.3027179 0.0000000
## 2027 0.4647482 0.3027179 0.0000000
## 2028 0.4647482 0.3027179 0.0000000
## 2029 0.4647482 0.3027179 0.0000000
## 2030 0.4647482 0.3027179 0.0000000
## 2031 0.4647482 0.3027179 0.0000000
## 2032 0.4647482 0.3027179 0.0000000
## 2033 0.4647482 0.3027179 0.0000000
## 2034 0.4647482 0.3027179 0.0000000
## 2035 0.4647482 0.3027179 0.0000000
## 2036 0.4647482 0.3027179 0.0000000
## 2037 0.4647482 0.3027179 0.0000000
## 2038 0.4647482 0.3027179 0.0000000
## 2039 0.4647482 0.3027179 0.0000000
## 2040 0.4647482 0.3027179 0.0000000
## 2041 0.4647482 0.3027179 0.0000000
## 2042 0.4647482 0.3027179 0.0000000
## 2043 0.4647482 0.3027179 0.0000000
## 2044 0.4647482 0.3027179 0.0000000
## 2045 0.4647482 0.3027179 0.0000000
## 2046 0.4647482 0.3027179 0.0000000
## 2047 0.4647482 0.3027179 0.0000000
## 2048 0.4647482 0.3027179 0.0000000
## 2049 0.4647482 0.3027179 0.0000000
## 2050 0.4647482 0.3027179 0.0000000
## 2051 0.4647482 0.3027179 0.0000000
## 2052 0.4647482 0.3027179 0.0000000
## 2053 0.4647482 0.3027179 0.0000000
## 2054 0.4647482 0.3027179 0.0000000
## 2055 0.4647482 0.3027179 0.0000000
## 2056 0.4647482 0.3027179 0.0000000
## 2057 0.4647482 0.3027179 0.0000000
## 2058 0.4647482 0.3027179 0.0000000
## 2059 0.4647482 0.3027179 0.0000000
## 2060 0.4647482 0.3027179 0.0000000
## 2061 0.4647482 0.3027179 0.0000000
## 2062 0.4647482 0.3027179 0.0000000
## 2063 0.4647482 0.3027179 0.0000000
## 2064 0.4647482 0.3027179 0.0000000
## 2065 0.4647482 0.3027179 0.0000000
## 2066 0.4647482 0.3027179 0.0000000
## 2067 0.4647482 0.3027179 0.0000000
## 2068 0.4647482 0.3027179 0.0000000
## 2069 0.4647482 0.3027179 0.0000000
## 2070 0.4647482 0.3027179 0.0000000
## 2071 0.4647482 0.3027179 0.0000000
## 2072 0.4647482 0.3027179 0.0000000
## 2073 0.4647482 0.3027179 0.0000000
## 2074 0.4647482 0.3027179 0.0000000
## 2075 0.4647482 0.3027179 0.0000000
## 2076 0.4647482 0.3027179 0.0000000
## 2077 0.4647482 0.3027179 0.0000000
## 2078 0.4647482 0.3027179 0.0000000
## 2079 0.4647482 0.3027179 0.0000000
## 2080 0.4647482 0.3027179 0.0000000
## 2081 0.4647482 0.3027179 0.0000000
## 2082 0.4647482 0.3027179 0.0000000
## 2083 0.4647482 0.3027179 0.0000000
## 2084 0.4647482 0.3027179 0.0000000
## 2085 0.4647482 0.3027179 0.0000000
## 2086 0.4647482 0.3027179 0.0000000
## 2087 0.4647482 0.3027179 0.0000000
## 2088 0.4647482 0.3027179 0.0000000
## 2089 0.4647482 0.3027179 0.0000000
## 2090 0.4647482 0.3027179 0.0000000
## 2091 0.4647482 0.3027179 0.0000000
## 2092 0.4647482 0.3027179 0.0000000
## 2093 0.4647482 0.3027179 0.0000000
## 2094 0.4647482 0.3027179 0.0000000
## 2095 0.4647482 0.3027179 0.0000000
## 2096 0.4647482 0.3027179 0.0000000
## 2097 0.4647482 0.3027179 0.0000000
## 2098 0.4647482 0.3027179 0.0000000
## 2099 0.4647482 0.3027179 0.0000000
## 2100 0.4647482 0.3027179 0.0000000
## 2101 0.4647482 0.3027179 0.0000000
## 2102 0.4647482 0.3027179 0.0000000
## 2103 0.4647482 0.3027179 0.0000000
## 2104 0.4647482 0.3027179 0.0000000
## 2105 0.4647482 0.3027179 0.0000000
## 2106 0.4647482 0.3027179 0.0000000
## 2107 0.4647482 0.3027179 0.0000000
## 2108 0.4647482 0.3027179 0.0000000
## 2109 0.4647482 0.3027179 0.0000000
## 2110 0.4647482 0.3027179 0.0000000
## 2111 0.4647482 0.3027179 0.0000000
## 2112 0.4647482 0.3027179 0.0000000
## 2113 0.5989357 0.4274862 0.1666667
## 2114 0.5989357 0.4274862 0.1666667
## 2115 0.5989357 0.4274862 0.1666667
## 2116 0.5989357 0.4274862 0.1666667
## 2117 0.5989357 0.4274862 0.1666667
## 2118 0.5989357 0.4274862 0.1666667
## 2119 0.5989357 0.4274862 0.1666667
## 2120 0.5989357 0.4274862 0.1666667
## 2121 0.5989357 0.4274862 0.1666667
## 2122 0.5989357 0.4274862 0.1666667
## 2123 0.5989357 0.4274862 0.1666667
## 2124 0.5989357 0.4274862 0.1666667
## 2125 0.5989357 0.4274862 0.1666667
## 2126 0.5989357 0.4274862 0.1666667
## 2127 0.5989357 0.4274862 0.1666667
## 2128 0.5989357 0.4274862 0.1666667
## 2129 0.5989357 0.4274862 0.1666667
## 2130 0.5989357 0.4274862 0.1666667
## 2131 0.5989357 0.4274862 0.1666667
## 2132 0.5989357 0.4274862 0.1666667
## 2133 0.5989357 0.4274862 0.1666667
## 2134 0.5989357 0.4274862 0.1666667
## 2135 0.5989357 0.4274862 0.1666667
## 2136 0.5989357 0.4274862 0.1666667
## 2137 0.5989357 0.4274862 0.1666667
## 2138 0.5989357 0.4274862 0.1666667
## 2139 0.5989357 0.4274862 0.1666667
## 2140 0.5989357 0.4274862 0.1666667
## 2141 0.5989357 0.4274862 0.1666667
## 2142 0.5989357 0.4274862 0.1666667
## 2143 0.5989357 0.4274862 0.1666667
## 2144 0.5989357 0.4274862 0.1666667
## 2145 0.5989357 0.4274862 0.1666667
## 2146 0.5989357 0.4274862 0.1666667
## 2147 0.5989357 0.4274862 0.1666667
## 2148 0.5989357 0.4274862 0.1666667
## 2149 0.5989357 0.4274862 0.1666667
## 2150 0.5989357 0.4274862 0.1666667
## 2151 0.5989357 0.4274862 0.1666667
## 2152 0.5989357 0.4274862 0.1666667
## 2153 0.5989357 0.4274862 0.1666667
## 2154 0.5989357 0.4274862 0.1666667
## 2155 0.5989357 0.4274862 0.1666667
## 2156 0.5989357 0.4274862 0.1666667
## 2157 0.5989357 0.4274862 0.1666667
## 2158 0.5989357 0.4274862 0.1666667
## 2159 0.5989357 0.4274862 0.1666667
## 2160 0.5989357 0.4274862 0.1666667
## 2161 0.5989357 0.4274862 0.1666667
## 2162 0.5989357 0.4274862 0.1666667
## 2163 0.5989357 0.4274862 0.1666667
## 2164 0.5989357 0.4274862 0.1666667
## 2165 0.5989357 0.4274862 0.1666667
## 2166 0.5989357 0.4274862 0.1666667
## 2167 0.5989357 0.4274862 0.1666667
## 2168 0.5989357 0.4274862 0.1666667
## 2169 0.5989357 0.4274862 0.1666667
## 2170 0.5989357 0.4274862 0.1666667
## 2171 0.5989357 0.4274862 0.1666667
## 2172 0.5989357 0.4274862 0.1666667
## 2173 0.5989357 0.4274862 0.1666667
## 2174 0.5989357 0.4274862 0.1666667
## 2175 0.5989357 0.4274862 0.1666667
## 2176 0.5989357 0.4274862 0.1666667
## 2177 0.5989357 0.4274862 0.1666667
## 2178 0.5989357 0.4274862 0.1666667
## 2179 0.5989357 0.4274862 0.1666667
## 2180 0.5989357 0.4274862 0.1666667
## 2181 0.5989357 0.4274862 0.1666667
## 2182 0.5989357 0.4274862 0.1666667
## 2183 0.5989357 0.4274862 0.1666667
## 2184 0.5989357 0.4274862 0.1666667
## 2185 0.5989357 0.4274862 0.1666667
## 2186 0.5989357 0.4274862 0.1666667
## 2187 0.5989357 0.4274862 0.1666667
## 2188 0.5989357 0.4274862 0.1666667
## 2189 0.5989357 0.4274862 0.1666667
## 2190 0.5989357 0.4274862 0.1666667
## 2191 0.5989357 0.4274862 0.1666667
## 2192 0.5989357 0.4274862 0.1666667
## 2193 0.5989357 0.4274862 0.1666667
## 2194 0.5989357 0.4274862 0.1666667
## 2195 0.5989357 0.4274862 0.1666667
## 2196 0.5989357 0.4274862 0.1666667
## 2197 0.5989357 0.4274862 0.1666667
## 2198 0.5989357 0.4274862 0.1666667
## 2199 0.5989357 0.4274862 0.1666667
## 2200 0.5989357 0.4274862 0.1666667
## 2201 0.5989357 0.4274862 0.1666667
## 2202 0.5989357 0.4274862 0.1666667
## 2203 0.5989357 0.4274862 0.1666667
## 2204 0.5989357 0.4274862 0.1666667
## 2205 0.5989357 0.4274862 0.1666667
## 2206 0.5989357 0.4274862 0.1666667
## 2207 0.5989357 0.4274862 0.1666667
## 2208 0.5989357 0.4274862 0.1666667
## 2209 0.5989357 0.4274862 0.1666667
## 2210 0.5989357 0.4274862 0.1666667
## 2211 0.5989357 0.4274862 0.1666667
## 2212 0.5989357 0.4274862 0.1666667
## 2213 0.5989357 0.4274862 0.1666667
## 2214 0.5989357 0.4274862 0.1666667
## 2215 0.5989357 0.4274862 0.1666667
## 2216 0.5989357 0.4274862 0.1666667
## 2217 0.5989357 0.4274862 0.1666667
## 2218 0.5989357 0.4274862 0.1666667
## 2219 0.5989357 0.4274862 0.1666667
## 2220 0.5989357 0.4274862 0.1666667
## 2221 0.5989357 0.4274862 0.1666667
## 2222 0.5989357 0.4274862 0.1666667
## 2223 0.5989357 0.4274862 0.1666667
## 2224 0.5989357 0.4274862 0.1666667
## 2225 0.5989357 0.4274862 0.1666667
## 2226 0.5989357 0.4274862 0.1666667
## 2227 0.5989357 0.4274862 0.1666667
## 2228 0.5989357 0.4274862 0.1666667
## 2229 0.5989357 0.4274862 0.1666667
## 2230 0.5989357 0.4274862 0.1666667
## 2231 0.5989357 0.4274862 0.1666667
## 2232 0.5989357 0.4274862 0.1666667
## 2233 0.5989357 0.4274862 0.1666667
## 2234 0.5989357 0.4274862 0.1666667
## 2235 0.5989357 0.4274862 0.1666667
## 2236 0.5989357 0.4274862 0.1666667
## 2237 0.5989357 0.4274862 0.1666667
## 2238 0.5989357 0.4274862 0.1666667
## 2239 0.5989357 0.4274862 0.1666667
## 2240 0.5989357 0.4274862 0.1666667
## 2241 0.5989357 0.4274862 0.1666667
## 2242 0.5989357 0.4274862 0.1666667
## 2243 0.5989357 0.4274862 0.1666667
## 2244 0.5989357 0.4274862 0.1666667
## 2245 0.5989357 0.4274862 0.1666667
## 2246 0.5989357 0.4274862 0.1666667
## 2247 0.5989357 0.4274862 0.1666667
## 2248 0.5989357 0.4274862 0.1666667
## 2249 0.5989357 0.4274862 0.1666667
## 2250 0.5989357 0.4274862 0.1666667
## 2251 0.5989357 0.4274862 0.1666667
## 2252 0.5989357 0.4274862 0.1666667
## 2253 0.5989357 0.4274862 0.1666667
## 2254 0.5989357 0.4274862 0.1666667
## 2255 0.5989357 0.4274862 0.1666667
## 2256 0.5989357 0.4274862 0.1666667
## 2257 0.5989357 0.4274862 0.1666667
## 2258 0.5989357 0.4274862 0.1666667
## 2259 0.5989357 0.4274862 0.1666667
## 2260 0.5989357 0.4274862 0.1666667
## 2261 0.5989357 0.4274862 0.1666667
## 2262 0.5989357 0.4274862 0.1666667
## 2263 0.5989357 0.4274862 0.1666667
## 2264 0.5989357 0.4274862 0.1666667
## 2265 0.5989357 0.4274862 0.1666667
## 2266 0.5989357 0.4274862 0.1666667
## 2267 0.5989357 0.4274862 0.1666667
## 2268 0.5989357 0.4274862 0.1666667
## 2269 0.5989357 0.4274862 0.1666667
## 2270 0.5989357 0.4274862 0.1666667
## 2271 0.5989357 0.4274862 0.1666667
## 2272 0.5989357 0.4274862 0.1666667
## 2273 0.5989357 0.4274862 0.1666667
## 2274 0.5989357 0.4274862 0.1666667
## 2275 0.5989357 0.4274862 0.1666667
## 2276 0.5989357 0.4274862 0.1666667
## 2277 0.5989357 0.4274862 0.1666667
## 2278 0.5989357 0.4274862 0.1666667
## 2279 0.5989357 0.4274862 0.1666667
## 2280 0.5989357 0.4274862 0.1666667
## 2281 0.5989357 0.4274862 0.1666667
## 2282 0.5989357 0.4274862 0.1666667
## 2283 0.5989357 0.4274862 0.1666667
## 2284 0.5989357 0.4274862 0.1666667
## 2285 0.5989357 0.4274862 0.1666667
## 2286 0.5989357 0.4274862 0.1666667
## 2287 0.5989357 0.4274862 0.1666667
## 2288 0.5989357 0.4274862 0.1666667
## 2289 0.5989357 0.4274862 0.1666667
## 2290 0.5989357 0.4274862 0.1666667
## 2291 0.5989357 0.4274862 0.1666667
## 2292 0.5989357 0.4274862 0.1666667
## 2293 0.5989357 0.4274862 0.1666667
## 2294 0.5989357 0.4274862 0.1666667
## 2295 0.5989357 0.4274862 0.1666667
## 2296 0.5989357 0.4274862 0.1666667
## 2297 0.5989357 0.4274862 0.1666667
## 2298 0.5989357 0.4274862 0.1666667
## 2299 0.5989357 0.4274862 0.1666667
## 2300 0.5989357 0.4274862 0.1666667
## 2301 0.5989357 0.4274862 0.1666667
## 2302 0.5989357 0.4274862 0.1666667
## 2303 0.5989357 0.4274862 0.1666667
## 2304 0.5989357 0.4274862 0.1666667
## 2305 0.3858672 0.2390555 0.1666667
## 2306 0.3858672 0.2390555 0.1666667
## 2307 0.3858672 0.2390555 0.1666667
## 2308 0.3858672 0.2390555 0.1666667
## 2309 0.3858672 0.2390555 0.1666667
## 2310 0.3858672 0.2390555 0.1666667
## 2311 0.3858672 0.2390555 0.1666667
## 2312 0.3858672 0.2390555 0.1666667
## 2313 0.3858672 0.2390555 0.1666667
## 2314 0.3858672 0.2390555 0.1666667
## 2315 0.3858672 0.2390555 0.1666667
## 2316 0.3858672 0.2390555 0.1666667
## 2317 0.3858672 0.2390555 0.1666667
## 2318 0.3858672 0.2390555 0.1666667
## 2319 0.3858672 0.2390555 0.1666667
## 2320 0.3858672 0.2390555 0.1666667
## 2321 0.3858672 0.2390555 0.1666667
## 2322 0.3858672 0.2390555 0.1666667
## 2323 0.3858672 0.2390555 0.1666667
## 2324 0.3858672 0.2390555 0.1666667
## 2325 0.3858672 0.2390555 0.1666667
## 2326 0.3858672 0.2390555 0.1666667
## 2327 0.3858672 0.2390555 0.1666667
## 2328 0.3858672 0.2390555 0.1666667
## 2329 0.3858672 0.2390555 0.1666667
## 2330 0.3858672 0.2390555 0.1666667
## 2331 0.3858672 0.2390555 0.1666667
## 2332 0.3858672 0.2390555 0.1666667
## 2333 0.3858672 0.2390555 0.1666667
## 2334 0.3858672 0.2390555 0.1666667
## 2335 0.3858672 0.2390555 0.1666667
## 2336 0.3858672 0.2390555 0.1666667
## 2337 0.3858672 0.2390555 0.1666667
## 2338 0.3858672 0.2390555 0.1666667
## 2339 0.3858672 0.2390555 0.1666667
## 2340 0.3858672 0.2390555 0.1666667
## 2341 0.3858672 0.2390555 0.1666667
## 2342 0.3858672 0.2390555 0.1666667
## 2343 0.3858672 0.2390555 0.1666667
## 2344 0.3858672 0.2390555 0.1666667
## 2345 0.3858672 0.2390555 0.1666667
## 2346 0.3858672 0.2390555 0.1666667
## 2347 0.3858672 0.2390555 0.1666667
## 2348 0.3858672 0.2390555 0.1666667
## 2349 0.3858672 0.2390555 0.1666667
## 2350 0.3858672 0.2390555 0.1666667
## 2351 0.3858672 0.2390555 0.1666667
## 2352 0.3858672 0.2390555 0.1666667
## 2353 0.3858672 0.2390555 0.1666667
## 2354 0.3858672 0.2390555 0.1666667
## 2355 0.3858672 0.2390555 0.1666667
## 2356 0.3858672 0.2390555 0.1666667
## 2357 0.3858672 0.2390555 0.1666667
## 2358 0.3858672 0.2390555 0.1666667
## 2359 0.3858672 0.2390555 0.1666667
## 2360 0.3858672 0.2390555 0.1666667
## 2361 0.3858672 0.2390555 0.1666667
## 2362 0.3858672 0.2390555 0.1666667
## 2363 0.3858672 0.2390555 0.1666667
## 2364 0.3858672 0.2390555 0.1666667
## 2365 0.3858672 0.2390555 0.1666667
## 2366 0.3858672 0.2390555 0.1666667
## 2367 0.3858672 0.2390555 0.1666667
## 2368 0.3858672 0.2390555 0.1666667
## 2369 0.3858672 0.2390555 0.1666667
## 2370 0.3858672 0.2390555 0.1666667
## 2371 0.3858672 0.2390555 0.1666667
## 2372 0.3858672 0.2390555 0.1666667
## 2373 0.3858672 0.2390555 0.1666667
## 2374 0.3858672 0.2390555 0.1666667
## 2375 0.3858672 0.2390555 0.1666667
## 2376 0.3858672 0.2390555 0.1666667
## 2377 0.3858672 0.2390555 0.1666667
## 2378 0.3858672 0.2390555 0.1666667
## 2379 0.3858672 0.2390555 0.1666667
## 2380 0.3858672 0.2390555 0.1666667
## 2381 0.3858672 0.2390555 0.1666667
## 2382 0.3858672 0.2390555 0.1666667
## 2383 0.3858672 0.2390555 0.1666667
## 2384 0.3858672 0.2390555 0.1666667
## 2385 0.3858672 0.2390555 0.1666667
## 2386 0.3858672 0.2390555 0.1666667
## 2387 0.3858672 0.2390555 0.1666667
## 2388 0.3858672 0.2390555 0.1666667
## 2389 0.3858672 0.2390555 0.1666667
## 2390 0.3858672 0.2390555 0.1666667
## 2391 0.3858672 0.2390555 0.1666667
## 2392 0.3858672 0.2390555 0.1666667
## 2393 0.3858672 0.2390555 0.1666667
## 2394 0.3858672 0.2390555 0.1666667
## 2395 0.3858672 0.2390555 0.1666667
## 2396 0.3858672 0.2390555 0.1666667
## 2397 0.3858672 0.2390555 0.1666667
## 2398 0.3858672 0.2390555 0.1666667
## 2399 0.3858672 0.2390555 0.1666667
## 2400 0.3858672 0.2390555 0.1666667
## 2401 0.3858672 0.2390555 0.1666667
## 2402 0.3858672 0.2390555 0.1666667
## 2403 0.3858672 0.2390555 0.1666667
## 2404 0.3858672 0.2390555 0.1666667
## 2405 0.3858672 0.2390555 0.1666667
## 2406 0.3858672 0.2390555 0.1666667
## 2407 0.3858672 0.2390555 0.1666667
## 2408 0.3858672 0.2390555 0.1666667
## 2409 0.3858672 0.2390555 0.1666667
## 2410 0.3858672 0.2390555 0.1666667
## 2411 0.3858672 0.2390555 0.1666667
## 2412 0.3858672 0.2390555 0.1666667
## 2413 0.3858672 0.2390555 0.1666667
## 2414 0.3858672 0.2390555 0.1666667
## 2415 0.3858672 0.2390555 0.1666667
## 2416 0.3858672 0.2390555 0.1666667
## 2417 0.3858672 0.2390555 0.1666667
## 2418 0.3858672 0.2390555 0.1666667
## 2419 0.3858672 0.2390555 0.1666667
## 2420 0.3858672 0.2390555 0.1666667
## 2421 0.3858672 0.2390555 0.1666667
## 2422 0.3858672 0.2390555 0.1666667
## 2423 0.3858672 0.2390555 0.1666667
## 2424 0.3858672 0.2390555 0.1666667
## 2425 0.3858672 0.2390555 0.1666667
## 2426 0.3858672 0.2390555 0.1666667
## 2427 0.3858672 0.2390555 0.1666667
## 2428 0.3858672 0.2390555 0.1666667
## 2429 0.3858672 0.2390555 0.1666667
## 2430 0.3858672 0.2390555 0.1666667
## 2431 0.3858672 0.2390555 0.1666667
## 2432 0.3858672 0.2390555 0.1666667
## 2433 0.3858672 0.2390555 0.1666667
## 2434 0.3858672 0.2390555 0.1666667
## 2435 0.3858672 0.2390555 0.1666667
## 2436 0.3858672 0.2390555 0.1666667
## 2437 0.3858672 0.2390555 0.1666667
## 2438 0.3858672 0.2390555 0.1666667
## 2439 0.3858672 0.2390555 0.1666667
## 2440 0.3858672 0.2390555 0.1666667
## 2441 0.3858672 0.2390555 0.1666667
## 2442 0.3858672 0.2390555 0.1666667
## 2443 0.3858672 0.2390555 0.1666667
## 2444 0.3858672 0.2390555 0.1666667
## 2445 0.3858672 0.2390555 0.1666667
## 2446 0.3858672 0.2390555 0.1666667
## 2447 0.3858672 0.2390555 0.1666667
## 2448 0.3858672 0.2390555 0.1666667
## 2449 0.3858672 0.2390555 0.1666667
## 2450 0.3858672 0.2390555 0.1666667
## 2451 0.3858672 0.2390555 0.1666667
## 2452 0.3858672 0.2390555 0.1666667
## 2453 0.3858672 0.2390555 0.1666667
## 2454 0.3858672 0.2390555 0.1666667
## 2455 0.3858672 0.2390555 0.1666667
## 2456 0.3858672 0.2390555 0.1666667
## 2457 0.3858672 0.2390555 0.1666667
## 2458 0.3858672 0.2390555 0.1666667
## 2459 0.3858672 0.2390555 0.1666667
## 2460 0.3858672 0.2390555 0.1666667
## 2461 0.3858672 0.2390555 0.1666667
## 2462 0.3858672 0.2390555 0.1666667
## 2463 0.3858672 0.2390555 0.1666667
## 2464 0.3858672 0.2390555 0.1666667
## 2465 0.3858672 0.2390555 0.1666667
## 2466 0.3858672 0.2390555 0.1666667
## 2467 0.3858672 0.2390555 0.1666667
## 2468 0.3858672 0.2390555 0.1666667
## 2469 0.3858672 0.2390555 0.1666667
## 2470 0.3858672 0.2390555 0.1666667
## 2471 0.3858672 0.2390555 0.1666667
## 2472 0.3858672 0.2390555 0.1666667
## 2473 0.3858672 0.2390555 0.1666667
## 2474 0.3858672 0.2390555 0.1666667
## 2475 0.3858672 0.2390555 0.1666667
## 2476 0.3858672 0.2390555 0.1666667
## 2477 0.3858672 0.2390555 0.1666667
## 2478 0.3858672 0.2390555 0.1666667
## 2479 0.3858672 0.2390555 0.1666667
## 2480 0.3858672 0.2390555 0.1666667
## 2481 0.3858672 0.2390555 0.1666667
## 2482 0.3858672 0.2390555 0.1666667
## 2483 0.3858672 0.2390555 0.1666667
## 2484 0.3858672 0.2390555 0.1666667
## 2485 0.3858672 0.2390555 0.1666667
## 2486 0.3858672 0.2390555 0.1666667
## 2487 0.3858672 0.2390555 0.1666667
## 2488 0.3858672 0.2390555 0.1666667
## 2489 0.3858672 0.2390555 0.1666667
## 2490 0.3858672 0.2390555 0.1666667
## 2491 0.3858672 0.2390555 0.1666667
## 2492 0.3858672 0.2390555 0.1666667
## 2493 0.3858672 0.2390555 0.1666667
## 2494 0.3858672 0.2390555 0.1666667
## 2495 0.3858672 0.2390555 0.1666667
## 2496 0.3858672 0.2390555 0.1666667
## 2497 0.4258033 0.2704892 0.0000000
## 2498 0.4258033 0.2704892 0.0000000
## 2499 0.4258033 0.2704892 0.0000000
## 2500 0.4258033 0.2704892 0.0000000
## 2501 0.4258033 0.2704892 0.0000000
## 2502 0.4258033 0.2704892 0.0000000
## 2503 0.4258033 0.2704892 0.0000000
## 2504 0.4258033 0.2704892 0.0000000
## 2505 0.4258033 0.2704892 0.0000000
## 2506 0.4258033 0.2704892 0.0000000
## 2507 0.4258033 0.2704892 0.0000000
## 2508 0.4258033 0.2704892 0.0000000
## 2509 0.4258033 0.2704892 0.0000000
## 2510 0.4258033 0.2704892 0.0000000
## 2511 0.4258033 0.2704892 0.0000000
## 2512 0.4258033 0.2704892 0.0000000
## 2513 0.4258033 0.2704892 0.0000000
## 2514 0.4258033 0.2704892 0.0000000
## 2515 0.4258033 0.2704892 0.0000000
## 2516 0.4258033 0.2704892 0.0000000
## 2517 0.4258033 0.2704892 0.0000000
## 2518 0.4258033 0.2704892 0.0000000
## 2519 0.4258033 0.2704892 0.0000000
## 2520 0.4258033 0.2704892 0.0000000
## 2521 0.4258033 0.2704892 0.0000000
## 2522 0.4258033 0.2704892 0.0000000
## 2523 0.4258033 0.2704892 0.0000000
## 2524 0.4258033 0.2704892 0.0000000
## 2525 0.4258033 0.2704892 0.0000000
## 2526 0.4258033 0.2704892 0.0000000
## 2527 0.4258033 0.2704892 0.0000000
## 2528 0.4258033 0.2704892 0.0000000
## 2529 0.4258033 0.2704892 0.0000000
## 2530 0.4258033 0.2704892 0.0000000
## 2531 0.4258033 0.2704892 0.0000000
## 2532 0.4258033 0.2704892 0.0000000
## 2533 0.4258033 0.2704892 0.0000000
## 2534 0.4258033 0.2704892 0.0000000
## 2535 0.4258033 0.2704892 0.0000000
## 2536 0.4258033 0.2704892 0.0000000
## 2537 0.4258033 0.2704892 0.0000000
## 2538 0.4258033 0.2704892 0.0000000
## 2539 0.4258033 0.2704892 0.0000000
## 2540 0.4258033 0.2704892 0.0000000
## 2541 0.4258033 0.2704892 0.0000000
## 2542 0.4258033 0.2704892 0.0000000
## 2543 0.4258033 0.2704892 0.0000000
## 2544 0.4258033 0.2704892 0.0000000
## 2545 0.4258033 0.2704892 0.0000000
## 2546 0.4258033 0.2704892 0.0000000
## 2547 0.4258033 0.2704892 0.0000000
## 2548 0.4258033 0.2704892 0.0000000
## 2549 0.4258033 0.2704892 0.0000000
## 2550 0.4258033 0.2704892 0.0000000
## 2551 0.4258033 0.2704892 0.0000000
## 2552 0.4258033 0.2704892 0.0000000
## 2553 0.4258033 0.2704892 0.0000000
## 2554 0.4258033 0.2704892 0.0000000
## 2555 0.4258033 0.2704892 0.0000000
## 2556 0.4258033 0.2704892 0.0000000
## 2557 0.4258033 0.2704892 0.0000000
## 2558 0.4258033 0.2704892 0.0000000
## 2559 0.4258033 0.2704892 0.0000000
## 2560 0.4258033 0.2704892 0.0000000
## 2561 0.4258033 0.2704892 0.0000000
## 2562 0.4258033 0.2704892 0.0000000
## 2563 0.4258033 0.2704892 0.0000000
## 2564 0.4258033 0.2704892 0.0000000
## 2565 0.4258033 0.2704892 0.0000000
## 2566 0.4258033 0.2704892 0.0000000
## 2567 0.4258033 0.2704892 0.0000000
## 2568 0.4258033 0.2704892 0.0000000
## 2569 0.4258033 0.2704892 0.0000000
## 2570 0.4258033 0.2704892 0.0000000
## 2571 0.4258033 0.2704892 0.0000000
## 2572 0.4258033 0.2704892 0.0000000
## 2573 0.4258033 0.2704892 0.0000000
## 2574 0.4258033 0.2704892 0.0000000
## 2575 0.4258033 0.2704892 0.0000000
## 2576 0.4258033 0.2704892 0.0000000
## 2577 0.4258033 0.2704892 0.0000000
## 2578 0.4258033 0.2704892 0.0000000
## 2579 0.4258033 0.2704892 0.0000000
## 2580 0.4258033 0.2704892 0.0000000
## 2581 0.4258033 0.2704892 0.0000000
## 2582 0.4258033 0.2704892 0.0000000
## 2583 0.4258033 0.2704892 0.0000000
## 2584 0.4258033 0.2704892 0.0000000
## 2585 0.4258033 0.2704892 0.0000000
## 2586 0.4258033 0.2704892 0.0000000
## 2587 0.4258033 0.2704892 0.0000000
## 2588 0.4258033 0.2704892 0.0000000
## 2589 0.4258033 0.2704892 0.0000000
## 2590 0.4258033 0.2704892 0.0000000
## 2591 0.4258033 0.2704892 0.0000000
## 2592 0.4258033 0.2704892 0.0000000
## 2593 0.4258033 0.2704892 0.0000000
## 2594 0.4258033 0.2704892 0.0000000
## 2595 0.4258033 0.2704892 0.0000000
## 2596 0.4258033 0.2704892 0.0000000
## 2597 0.4258033 0.2704892 0.0000000
## 2598 0.4258033 0.2704892 0.0000000
## 2599 0.4258033 0.2704892 0.0000000
## 2600 0.4258033 0.2704892 0.0000000
## 2601 0.4258033 0.2704892 0.0000000
## 2602 0.4258033 0.2704892 0.0000000
## 2603 0.4258033 0.2704892 0.0000000
## 2604 0.4258033 0.2704892 0.0000000
## 2605 0.4258033 0.2704892 0.0000000
## 2606 0.4258033 0.2704892 0.0000000
## 2607 0.4258033 0.2704892 0.0000000
## 2608 0.4258033 0.2704892 0.0000000
## 2609 0.4258033 0.2704892 0.0000000
## 2610 0.4258033 0.2704892 0.0000000
## 2611 0.4258033 0.2704892 0.0000000
## 2612 0.4258033 0.2704892 0.0000000
## 2613 0.4258033 0.2704892 0.0000000
## 2614 0.4258033 0.2704892 0.0000000
## 2615 0.4258033 0.2704892 0.0000000
## 2616 0.4258033 0.2704892 0.0000000
## 2617 0.4258033 0.2704892 0.0000000
## 2618 0.4258033 0.2704892 0.0000000
## 2619 0.4258033 0.2704892 0.0000000
## 2620 0.4258033 0.2704892 0.0000000
## 2621 0.4258033 0.2704892 0.0000000
## 2622 0.4258033 0.2704892 0.0000000
## 2623 0.4258033 0.2704892 0.0000000
## 2624 0.4258033 0.2704892 0.0000000
## 2625 0.4258033 0.2704892 0.0000000
## 2626 0.4258033 0.2704892 0.0000000
## 2627 0.4258033 0.2704892 0.0000000
## 2628 0.4258033 0.2704892 0.0000000
## 2629 0.4258033 0.2704892 0.0000000
## 2630 0.4258033 0.2704892 0.0000000
## 2631 0.4258033 0.2704892 0.0000000
## baseline_beta_nestedness baseline_beta_total
## 1 0.05714286 0.20000000
## 2 0.05714286 0.20000000
## 3 0.05714286 0.20000000
## 4 0.05714286 0.20000000
## 5 0.05714286 0.20000000
## 6 0.05714286 0.20000000
## 7 0.05714286 0.20000000
## 8 0.05714286 0.20000000
## 9 0.05714286 0.20000000
## 10 0.05714286 0.20000000
## 11 0.05714286 0.20000000
## 12 0.05714286 0.20000000
## 13 0.05714286 0.20000000
## 14 0.05714286 0.20000000
## 15 0.05714286 0.20000000
## 16 0.05714286 0.20000000
## 17 0.05714286 0.20000000
## 18 0.05714286 0.20000000
## 19 0.05714286 0.20000000
## 20 0.05714286 0.20000000
## 21 0.05714286 0.20000000
## 22 0.05714286 0.20000000
## 23 0.05714286 0.20000000
## 24 0.05714286 0.20000000
## 25 0.05714286 0.20000000
## 26 0.05714286 0.20000000
## 27 0.05714286 0.20000000
## 28 0.05714286 0.20000000
## 29 0.05714286 0.20000000
## 30 0.05714286 0.20000000
## 31 0.05714286 0.20000000
## 32 0.05714286 0.20000000
## 33 0.05714286 0.20000000
## 34 0.05714286 0.20000000
## 35 0.05714286 0.20000000
## 36 0.05714286 0.20000000
## 37 0.05714286 0.20000000
## 38 0.05714286 0.20000000
## 39 0.05714286 0.20000000
## 40 0.05714286 0.20000000
## 41 0.05714286 0.20000000
## 42 0.05714286 0.20000000
## 43 0.05714286 0.20000000
## 44 0.05714286 0.20000000
## 45 0.05714286 0.20000000
## 46 0.05714286 0.20000000
## 47 0.05714286 0.20000000
## 48 0.05714286 0.20000000
## 49 0.05714286 0.20000000
## 50 0.05714286 0.20000000
## 51 0.05714286 0.20000000
## 52 0.05714286 0.20000000
## 53 0.05714286 0.20000000
## 54 0.05714286 0.20000000
## 55 0.05714286 0.20000000
## 56 0.05714286 0.20000000
## 57 0.05714286 0.20000000
## 58 0.05714286 0.20000000
## 59 0.05714286 0.20000000
## 60 0.05714286 0.20000000
## 61 0.05714286 0.20000000
## 62 0.05714286 0.20000000
## 63 0.05714286 0.20000000
## 64 0.05714286 0.20000000
## 65 0.05714286 0.20000000
## 66 0.05714286 0.20000000
## 67 0.05714286 0.20000000
## 68 0.05714286 0.20000000
## 69 0.05714286 0.20000000
## 70 0.05714286 0.20000000
## 71 0.05714286 0.20000000
## 72 0.05714286 0.20000000
## 73 0.05714286 0.20000000
## 74 0.05714286 0.20000000
## 75 0.05714286 0.20000000
## 76 0.05714286 0.20000000
## 77 0.05714286 0.20000000
## 78 0.05714286 0.20000000
## 79 0.05714286 0.20000000
## 80 0.05714286 0.20000000
## 81 0.05714286 0.20000000
## 82 0.05714286 0.20000000
## 83 0.05714286 0.20000000
## 84 0.05714286 0.20000000
## 85 0.05714286 0.20000000
## 86 0.05714286 0.20000000
## 87 0.05714286 0.20000000
## 88 0.05714286 0.20000000
## 89 0.05714286 0.20000000
## 90 0.05714286 0.20000000
## 91 0.05714286 0.20000000
## 92 0.05714286 0.20000000
## 93 0.05714286 0.20000000
## 94 0.05714286 0.20000000
## 95 0.05714286 0.20000000
## 96 0.05714286 0.20000000
## 97 0.05714286 0.20000000
## 98 0.05714286 0.20000000
## 99 0.05714286 0.20000000
## 100 0.05714286 0.20000000
## 101 0.05714286 0.20000000
## 102 0.05714286 0.20000000
## 103 0.05714286 0.20000000
## 104 0.05714286 0.20000000
## 105 0.05714286 0.20000000
## 106 0.05714286 0.20000000
## 107 0.05714286 0.20000000
## 108 0.05714286 0.20000000
## 109 0.05714286 0.20000000
## 110 0.05714286 0.20000000
## 111 0.05714286 0.20000000
## 112 0.05714286 0.20000000
## 113 0.05714286 0.20000000
## 114 0.05714286 0.20000000
## 115 0.05714286 0.20000000
## 116 0.05714286 0.20000000
## 117 0.05714286 0.20000000
## 118 0.05714286 0.20000000
## 119 0.05714286 0.20000000
## 120 0.05714286 0.20000000
## 121 0.05714286 0.20000000
## 122 0.05714286 0.20000000
## 123 0.05714286 0.20000000
## 124 0.05714286 0.20000000
## 125 0.05714286 0.20000000
## 126 0.05714286 0.20000000
## 127 0.05714286 0.20000000
## 128 0.05714286 0.20000000
## 129 0.05714286 0.20000000
## 130 0.05714286 0.20000000
## 131 0.05714286 0.20000000
## 132 0.05714286 0.20000000
## 133 0.05714286 0.20000000
## 134 0.05714286 0.20000000
## 135 0.05714286 0.20000000
## 136 0.05714286 0.20000000
## 137 0.05714286 0.20000000
## 138 0.05714286 0.20000000
## 139 0.05714286 0.20000000
## 140 0.05714286 0.20000000
## 141 0.05714286 0.20000000
## 142 0.05714286 0.20000000
## 143 0.05714286 0.20000000
## 144 0.05714286 0.20000000
## 145 0.05714286 0.20000000
## 146 0.05714286 0.20000000
## 147 0.05714286 0.20000000
## 148 0.05714286 0.20000000
## 149 0.05714286 0.20000000
## 150 0.05714286 0.20000000
## 151 0.05714286 0.20000000
## 152 0.05714286 0.20000000
## 153 0.05714286 0.20000000
## 154 0.05714286 0.20000000
## 155 0.05714286 0.20000000
## 156 0.05714286 0.20000000
## 157 0.05714286 0.20000000
## 158 0.05714286 0.20000000
## 159 0.05714286 0.20000000
## 160 0.05714286 0.20000000
## 161 0.05714286 0.20000000
## 162 0.05714286 0.20000000
## 163 0.05714286 0.20000000
## 164 0.05714286 0.20000000
## 165 0.05714286 0.20000000
## 166 0.05714286 0.20000000
## 167 0.05714286 0.20000000
## 168 0.05714286 0.20000000
## 169 0.05714286 0.20000000
## 170 0.05714286 0.20000000
## 171 0.05714286 0.20000000
## 172 0.05714286 0.20000000
## 173 0.05714286 0.20000000
## 174 0.05714286 0.20000000
## 175 0.05714286 0.20000000
## 176 0.05714286 0.20000000
## 177 0.05714286 0.20000000
## 178 0.05714286 0.20000000
## 179 0.05714286 0.20000000
## 180 0.05714286 0.20000000
## 181 0.05714286 0.20000000
## 182 0.05714286 0.20000000
## 183 0.05714286 0.20000000
## 184 0.05714286 0.20000000
## 185 0.05714286 0.20000000
## 186 0.05714286 0.20000000
## 187 0.05714286 0.20000000
## 188 0.05714286 0.20000000
## 189 0.05714286 0.20000000
## 190 0.05714286 0.20000000
## 191 0.05714286 0.20000000
## 192 0.05714286 0.20000000
## 193 0.12500000 0.12500000
## 194 0.12500000 0.12500000
## 195 0.12500000 0.12500000
## 196 0.12500000 0.12500000
## 197 0.12500000 0.12500000
## 198 0.12500000 0.12500000
## 199 0.12500000 0.12500000
## 200 0.12500000 0.12500000
## 201 0.12500000 0.12500000
## 202 0.12500000 0.12500000
## 203 0.12500000 0.12500000
## 204 0.12500000 0.12500000
## 205 0.12500000 0.12500000
## 206 0.12500000 0.12500000
## 207 0.12500000 0.12500000
## 208 0.12500000 0.12500000
## 209 0.12500000 0.12500000
## 210 0.12500000 0.12500000
## 211 0.12500000 0.12500000
## 212 0.12500000 0.12500000
## 213 0.12500000 0.12500000
## 214 0.12500000 0.12500000
## 215 0.12500000 0.12500000
## 216 0.12500000 0.12500000
## 217 0.12500000 0.12500000
## 218 0.12500000 0.12500000
## 219 0.12500000 0.12500000
## 220 0.12500000 0.12500000
## 221 0.12500000 0.12500000
## 222 0.12500000 0.12500000
## 223 0.12500000 0.12500000
## 224 0.12500000 0.12500000
## 225 0.12500000 0.12500000
## 226 0.12500000 0.12500000
## 227 0.12500000 0.12500000
## 228 0.12500000 0.12500000
## 229 0.12500000 0.12500000
## 230 0.12500000 0.12500000
## 231 0.12500000 0.12500000
## 232 0.12500000 0.12500000
## 233 0.12500000 0.12500000
## 234 0.12500000 0.12500000
## 235 0.12500000 0.12500000
## 236 0.12500000 0.12500000
## 237 0.12500000 0.12500000
## 238 0.12500000 0.12500000
## 239 0.12500000 0.12500000
## 240 0.12500000 0.12500000
## 241 0.12500000 0.12500000
## 242 0.12500000 0.12500000
## 243 0.12500000 0.12500000
## 244 0.12500000 0.12500000
## 245 0.12500000 0.12500000
## 246 0.12500000 0.12500000
## 247 0.12500000 0.12500000
## 248 0.12500000 0.12500000
## 249 0.12500000 0.12500000
## 250 0.12500000 0.12500000
## 251 0.12500000 0.12500000
## 252 0.12500000 0.12500000
## 253 0.12500000 0.12500000
## 254 0.12500000 0.12500000
## 255 0.12500000 0.12500000
## 256 0.12500000 0.12500000
## 257 0.12500000 0.12500000
## 258 0.12500000 0.12500000
## 259 0.12500000 0.12500000
## 260 0.12500000 0.12500000
## 261 0.12500000 0.12500000
## 262 0.12500000 0.12500000
## 263 0.12500000 0.12500000
## 264 0.12500000 0.12500000
## 265 0.12500000 0.12500000
## 266 0.12500000 0.12500000
## 267 0.12500000 0.12500000
## 268 0.12500000 0.12500000
## 269 0.12500000 0.12500000
## 270 0.12500000 0.12500000
## 271 0.12500000 0.12500000
## 272 0.12500000 0.12500000
## 273 0.12500000 0.12500000
## 274 0.12500000 0.12500000
## 275 0.12500000 0.12500000
## 276 0.12500000 0.12500000
## 277 0.12500000 0.12500000
## 278 0.12500000 0.12500000
## 279 0.12500000 0.12500000
## 280 0.12500000 0.12500000
## 281 0.12500000 0.12500000
## 282 0.12500000 0.12500000
## 283 0.12500000 0.12500000
## 284 0.12500000 0.12500000
## 285 0.12500000 0.12500000
## 286 0.12500000 0.12500000
## 287 0.12500000 0.12500000
## 288 0.12500000 0.12500000
## 289 0.12500000 0.12500000
## 290 0.12500000 0.12500000
## 291 0.12500000 0.12500000
## 292 0.12500000 0.12500000
## 293 0.12500000 0.12500000
## 294 0.12500000 0.12500000
## 295 0.12500000 0.12500000
## 296 0.12500000 0.12500000
## 297 0.12500000 0.12500000
## 298 0.12500000 0.12500000
## 299 0.12500000 0.12500000
## 300 0.12500000 0.12500000
## 301 0.12500000 0.12500000
## 302 0.12500000 0.12500000
## 303 0.12500000 0.12500000
## 304 0.12500000 0.12500000
## 305 0.12500000 0.12500000
## 306 0.12500000 0.12500000
## 307 0.12500000 0.12500000
## 308 0.12500000 0.12500000
## 309 0.12500000 0.12500000
## 310 0.12500000 0.12500000
## 311 0.12500000 0.12500000
## 312 0.12500000 0.12500000
## 313 0.12500000 0.12500000
## 314 0.12500000 0.12500000
## 315 0.12500000 0.12500000
## 316 0.12500000 0.12500000
## 317 0.12500000 0.12500000
## 318 0.12500000 0.12500000
## 319 0.12500000 0.12500000
## 320 0.12500000 0.12500000
## 321 0.12500000 0.12500000
## 322 0.12500000 0.12500000
## 323 0.12500000 0.12500000
## 324 0.12500000 0.12500000
## 325 0.12500000 0.12500000
## 326 0.12500000 0.12500000
## 327 0.12500000 0.12500000
## 328 0.12500000 0.12500000
## 329 0.12500000 0.12500000
## 330 0.12500000 0.12500000
## 331 0.12500000 0.12500000
## 332 0.12500000 0.12500000
## 333 0.12500000 0.12500000
## 334 0.12500000 0.12500000
## 335 0.12500000 0.12500000
## 336 0.12500000 0.12500000
## 337 0.12500000 0.12500000
## 338 0.12500000 0.12500000
## 339 0.12500000 0.12500000
## 340 0.12500000 0.12500000
## 341 0.12500000 0.12500000
## 342 0.12500000 0.12500000
## 343 0.12500000 0.12500000
## 344 0.12500000 0.12500000
## 345 0.12500000 0.12500000
## 346 0.12500000 0.12500000
## 347 0.12500000 0.12500000
## 348 0.12500000 0.12500000
## 349 0.12500000 0.12500000
## 350 0.12500000 0.12500000
## 351 0.12500000 0.12500000
## 352 0.12500000 0.12500000
## 353 0.12500000 0.12500000
## 354 0.12500000 0.12500000
## 355 0.12500000 0.12500000
## 356 0.12500000 0.12500000
## 357 0.12500000 0.12500000
## 358 0.12500000 0.12500000
## 359 0.12500000 0.12500000
## 360 0.12500000 0.12500000
## 361 0.12500000 0.12500000
## 362 0.12500000 0.12500000
## 363 0.12500000 0.12500000
## 364 0.12500000 0.12500000
## 365 0.12500000 0.12500000
## 366 0.12500000 0.12500000
## 367 0.12500000 0.12500000
## 368 0.12500000 0.12500000
## 369 0.12500000 0.12500000
## 370 0.12500000 0.12500000
## 371 0.12500000 0.12500000
## 372 0.12500000 0.12500000
## 373 0.12500000 0.12500000
## 374 0.12500000 0.12500000
## 375 0.12500000 0.12500000
## 376 0.12500000 0.12500000
## 377 0.12500000 0.12500000
## 378 0.12500000 0.12500000
## 379 0.12500000 0.12500000
## 380 0.12500000 0.12500000
## 381 0.12500000 0.12500000
## 382 0.12500000 0.12500000
## 383 0.12500000 0.12500000
## 384 0.12500000 0.12500000
## 385 0.10714286 0.25000000
## 386 0.10714286 0.25000000
## 387 0.10714286 0.25000000
## 388 0.10714286 0.25000000
## 389 0.10714286 0.25000000
## 390 0.10714286 0.25000000
## 391 0.10714286 0.25000000
## 392 0.10714286 0.25000000
## 393 0.10714286 0.25000000
## 394 0.10714286 0.25000000
## 395 0.10714286 0.25000000
## 396 0.10714286 0.25000000
## 397 0.10714286 0.25000000
## 398 0.10714286 0.25000000
## 399 0.10714286 0.25000000
## 400 0.10714286 0.25000000
## 401 0.10714286 0.25000000
## 402 0.10714286 0.25000000
## 403 0.10714286 0.25000000
## 404 0.10714286 0.25000000
## 405 0.10714286 0.25000000
## 406 0.10714286 0.25000000
## 407 0.10714286 0.25000000
## 408 0.10714286 0.25000000
## 409 0.10714286 0.25000000
## 410 0.10714286 0.25000000
## 411 0.10714286 0.25000000
## 412 0.10714286 0.25000000
## 413 0.10714286 0.25000000
## 414 0.10714286 0.25000000
## 415 0.10714286 0.25000000
## 416 0.10714286 0.25000000
## 417 0.10714286 0.25000000
## 418 0.10714286 0.25000000
## 419 0.10714286 0.25000000
## 420 0.10714286 0.25000000
## 421 0.10714286 0.25000000
## 422 0.10714286 0.25000000
## 423 0.10714286 0.25000000
## 424 0.10714286 0.25000000
## 425 0.10714286 0.25000000
## 426 0.10714286 0.25000000
## 427 0.10714286 0.25000000
## 428 0.10714286 0.25000000
## 429 0.10714286 0.25000000
## 430 0.10714286 0.25000000
## 431 0.10714286 0.25000000
## 432 0.10714286 0.25000000
## 433 0.10714286 0.25000000
## 434 0.10714286 0.25000000
## 435 0.10714286 0.25000000
## 436 0.10714286 0.25000000
## 437 0.10714286 0.25000000
## 438 0.10714286 0.25000000
## 439 0.10714286 0.25000000
## 440 0.10714286 0.25000000
## 441 0.10714286 0.25000000
## 442 0.10714286 0.25000000
## 443 0.10714286 0.25000000
## 444 0.10714286 0.25000000
## 445 0.10714286 0.25000000
## 446 0.10714286 0.25000000
## 447 0.10714286 0.25000000
## 448 0.10714286 0.25000000
## 449 0.10714286 0.25000000
## 450 0.10714286 0.25000000
## 451 0.10714286 0.25000000
## 452 0.10714286 0.25000000
## 453 0.10714286 0.25000000
## 454 0.10714286 0.25000000
## 455 0.10714286 0.25000000
## 456 0.10714286 0.25000000
## 457 0.10714286 0.25000000
## 458 0.10714286 0.25000000
## 459 0.10714286 0.25000000
## 460 0.10714286 0.25000000
## 461 0.10714286 0.25000000
## 462 0.10714286 0.25000000
## 463 0.10714286 0.25000000
## 464 0.10714286 0.25000000
## 465 0.10714286 0.25000000
## 466 0.10714286 0.25000000
## 467 0.10714286 0.25000000
## 468 0.10714286 0.25000000
## 469 0.10714286 0.25000000
## 470 0.10714286 0.25000000
## 471 0.10714286 0.25000000
## 472 0.10714286 0.25000000
## 473 0.10714286 0.25000000
## 474 0.10714286 0.25000000
## 475 0.10714286 0.25000000
## 476 0.10714286 0.25000000
## 477 0.10714286 0.25000000
## 478 0.10714286 0.25000000
## 479 0.10714286 0.25000000
## 480 0.10714286 0.25000000
## 481 0.10714286 0.25000000
## 482 0.10714286 0.25000000
## 483 0.10714286 0.25000000
## 484 0.10714286 0.25000000
## 485 0.10714286 0.25000000
## 486 0.10714286 0.25000000
## 487 0.10714286 0.25000000
## 488 0.10714286 0.25000000
## 489 0.10714286 0.25000000
## 490 0.10714286 0.25000000
## 491 0.10714286 0.25000000
## 492 0.10714286 0.25000000
## 493 0.10714286 0.25000000
## 494 0.10714286 0.25000000
## 495 0.10714286 0.25000000
## 496 0.10714286 0.25000000
## 497 0.10714286 0.25000000
## 498 0.10714286 0.25000000
## 499 0.10714286 0.25000000
## 500 0.10714286 0.25000000
## 501 0.10714286 0.25000000
## 502 0.10714286 0.25000000
## 503 0.10714286 0.25000000
## 504 0.10714286 0.25000000
## 505 0.10714286 0.25000000
## 506 0.10714286 0.25000000
## 507 0.10714286 0.25000000
## 508 0.10714286 0.25000000
## 509 0.10714286 0.25000000
## 510 0.10714286 0.25000000
## 511 0.10714286 0.25000000
## 512 0.10714286 0.25000000
## 513 0.10714286 0.25000000
## 514 0.10714286 0.25000000
## 515 0.10714286 0.25000000
## 516 0.10714286 0.25000000
## 517 0.10714286 0.25000000
## 518 0.10714286 0.25000000
## 519 0.10714286 0.25000000
## 520 0.10714286 0.25000000
## 521 0.10714286 0.25000000
## 522 0.10714286 0.25000000
## 523 0.10714286 0.25000000
## 524 0.10714286 0.25000000
## 525 0.10714286 0.25000000
## 526 0.10714286 0.25000000
## 527 0.10714286 0.25000000
## 528 0.10714286 0.25000000
## 529 0.10714286 0.25000000
## 530 0.10714286 0.25000000
## 531 0.10714286 0.25000000
## 532 0.10714286 0.25000000
## 533 0.10714286 0.25000000
## 534 0.10714286 0.25000000
## 535 0.10714286 0.25000000
## 536 0.10714286 0.25000000
## 537 0.10714286 0.25000000
## 538 0.10714286 0.25000000
## 539 0.10714286 0.25000000
## 540 0.10714286 0.25000000
## 541 0.10714286 0.25000000
## 542 0.10714286 0.25000000
## 543 0.10714286 0.25000000
## 544 0.10714286 0.25000000
## 545 0.10714286 0.25000000
## 546 0.10714286 0.25000000
## 547 0.10714286 0.25000000
## 548 0.10714286 0.25000000
## 549 0.10714286 0.25000000
## 550 0.10714286 0.25000000
## 551 0.10714286 0.25000000
## 552 0.10714286 0.25000000
## 553 0.10714286 0.25000000
## 554 0.10714286 0.25000000
## 555 0.10714286 0.25000000
## 556 0.10714286 0.25000000
## 557 0.10714286 0.25000000
## 558 0.10714286 0.25000000
## 559 0.10714286 0.25000000
## 560 0.10714286 0.25000000
## 561 0.10714286 0.25000000
## 562 0.10714286 0.25000000
## 563 0.10714286 0.25000000
## 564 0.10714286 0.25000000
## 565 0.10714286 0.25000000
## 566 0.10714286 0.25000000
## 567 0.10714286 0.25000000
## 568 0.10714286 0.25000000
## 569 0.10714286 0.25000000
## 570 0.10714286 0.25000000
## 571 0.10714286 0.25000000
## 572 0.10714286 0.25000000
## 573 0.10714286 0.25000000
## 574 0.10714286 0.25000000
## 575 0.10714286 0.25000000
## 576 0.10714286 0.25000000
## 577 0.00000000 0.28571429
## 578 0.00000000 0.28571429
## 579 0.00000000 0.28571429
## 580 0.00000000 0.28571429
## 581 0.00000000 0.28571429
## 582 0.00000000 0.28571429
## 583 0.00000000 0.28571429
## 584 0.00000000 0.28571429
## 585 0.00000000 0.28571429
## 586 0.00000000 0.28571429
## 587 0.00000000 0.28571429
## 588 0.00000000 0.28571429
## 589 0.00000000 0.28571429
## 590 0.00000000 0.28571429
## 591 0.00000000 0.28571429
## 592 0.00000000 0.28571429
## 593 0.00000000 0.28571429
## 594 0.00000000 0.28571429
## 595 0.00000000 0.28571429
## 596 0.00000000 0.28571429
## 597 0.00000000 0.28571429
## 598 0.00000000 0.28571429
## 599 0.00000000 0.28571429
## 600 0.00000000 0.28571429
## 601 0.00000000 0.28571429
## 602 0.00000000 0.28571429
## 603 0.00000000 0.28571429
## 604 0.00000000 0.28571429
## 605 0.00000000 0.28571429
## 606 0.00000000 0.28571429
## 607 0.00000000 0.28571429
## 608 0.00000000 0.28571429
## 609 0.00000000 0.28571429
## 610 0.00000000 0.28571429
## 611 0.00000000 0.28571429
## 612 0.00000000 0.28571429
## 613 0.00000000 0.28571429
## 614 0.00000000 0.28571429
## 615 0.00000000 0.28571429
## 616 0.00000000 0.28571429
## 617 0.00000000 0.28571429
## 618 0.00000000 0.28571429
## 619 0.00000000 0.28571429
## 620 0.00000000 0.28571429
## 621 0.00000000 0.28571429
## 622 0.00000000 0.28571429
## 623 0.00000000 0.28571429
## 624 0.00000000 0.28571429
## 625 0.00000000 0.28571429
## 626 0.00000000 0.28571429
## 627 0.00000000 0.28571429
## 628 0.00000000 0.28571429
## 629 0.00000000 0.28571429
## 630 0.00000000 0.28571429
## 631 0.00000000 0.28571429
## 632 0.00000000 0.28571429
## 633 0.00000000 0.28571429
## 634 0.00000000 0.28571429
## 635 0.00000000 0.28571429
## 636 0.00000000 0.28571429
## 637 0.00000000 0.28571429
## 638 0.00000000 0.28571429
## 639 0.00000000 0.28571429
## 640 0.00000000 0.28571429
## 641 0.00000000 0.28571429
## 642 0.00000000 0.28571429
## 643 0.00000000 0.28571429
## 644 0.00000000 0.28571429
## 645 0.00000000 0.28571429
## 646 0.00000000 0.28571429
## 647 0.00000000 0.28571429
## 648 0.00000000 0.28571429
## 649 0.00000000 0.28571429
## 650 0.00000000 0.28571429
## 651 0.00000000 0.28571429
## 652 0.00000000 0.28571429
## 653 0.00000000 0.28571429
## 654 0.00000000 0.28571429
## 655 0.00000000 0.28571429
## 656 0.00000000 0.28571429
## 657 0.00000000 0.28571429
## 658 0.00000000 0.28571429
## 659 0.00000000 0.28571429
## 660 0.00000000 0.28571429
## 661 0.00000000 0.28571429
## 662 0.00000000 0.28571429
## 663 0.00000000 0.28571429
## 664 0.00000000 0.28571429
## 665 0.00000000 0.28571429
## 666 0.00000000 0.28571429
## 667 0.00000000 0.28571429
## 668 0.00000000 0.28571429
## 669 0.00000000 0.28571429
## 670 0.00000000 0.28571429
## 671 0.00000000 0.28571429
## 672 0.00000000 0.28571429
## 673 0.00000000 0.28571429
## 674 0.00000000 0.28571429
## 675 0.00000000 0.28571429
## 676 0.00000000 0.28571429
## 677 0.00000000 0.28571429
## 678 0.00000000 0.28571429
## 679 0.00000000 0.28571429
## 680 0.00000000 0.28571429
## 681 0.00000000 0.28571429
## 682 0.00000000 0.28571429
## 683 0.00000000 0.28571429
## 684 0.00000000 0.28571429
## 685 0.00000000 0.28571429
## 686 0.00000000 0.28571429
## 687 0.00000000 0.28571429
## 688 0.00000000 0.28571429
## 689 0.00000000 0.28571429
## 690 0.00000000 0.28571429
## 691 0.00000000 0.28571429
## 692 0.00000000 0.28571429
## 693 0.00000000 0.28571429
## 694 0.00000000 0.28571429
## 695 0.00000000 0.28571429
## 696 0.00000000 0.28571429
## 697 0.00000000 0.28571429
## 698 0.00000000 0.28571429
## 699 0.00000000 0.28571429
## 700 0.00000000 0.28571429
## 701 0.00000000 0.28571429
## 702 0.00000000 0.28571429
## 703 0.00000000 0.28571429
## 704 0.00000000 0.28571429
## 705 0.00000000 0.28571429
## 706 0.00000000 0.28571429
## 707 0.00000000 0.28571429
## 708 0.00000000 0.28571429
## 709 0.00000000 0.28571429
## 710 0.00000000 0.28571429
## 711 0.00000000 0.28571429
## 712 0.00000000 0.28571429
## 713 0.00000000 0.28571429
## 714 0.00000000 0.28571429
## 715 0.00000000 0.28571429
## 716 0.00000000 0.28571429
## 717 0.00000000 0.28571429
## 718 0.00000000 0.28571429
## 719 0.00000000 0.28571429
## 720 0.00000000 0.28571429
## 721 0.00000000 0.28571429
## 722 0.00000000 0.28571429
## 723 0.00000000 0.28571429
## 724 0.00000000 0.28571429
## 725 0.00000000 0.28571429
## 726 0.00000000 0.28571429
## 727 0.00000000 0.28571429
## 728 0.00000000 0.28571429
## 729 0.00000000 0.28571429
## 730 0.00000000 0.28571429
## 731 0.00000000 0.28571429
## 732 0.00000000 0.28571429
## 733 0.00000000 0.28571429
## 734 0.00000000 0.28571429
## 735 0.00000000 0.28571429
## 736 0.00000000 0.28571429
## 737 0.00000000 0.28571429
## 738 0.00000000 0.28571429
## 739 0.00000000 0.28571429
## 740 0.00000000 0.28571429
## 741 0.00000000 0.28571429
## 742 0.00000000 0.28571429
## 743 0.00000000 0.28571429
## 744 0.00000000 0.28571429
## 745 0.00000000 0.28571429
## 746 0.00000000 0.28571429
## 747 0.00000000 0.28571429
## 748 0.00000000 0.28571429
## 749 0.00000000 0.28571429
## 750 0.00000000 0.28571429
## 751 0.00000000 0.28571429
## 752 0.00000000 0.28571429
## 753 0.00000000 0.28571429
## 754 0.00000000 0.28571429
## 755 0.00000000 0.28571429
## 756 0.00000000 0.28571429
## 757 0.00000000 0.28571429
## 758 0.00000000 0.28571429
## 759 0.00000000 0.28571429
## 760 0.00000000 0.28571429
## 761 0.00000000 0.28571429
## 762 0.00000000 0.28571429
## 763 0.00000000 0.28571429
## 764 0.00000000 0.28571429
## 765 0.00000000 0.28571429
## 766 0.00000000 0.28571429
## 767 0.00000000 0.28571429
## 768 0.00000000 0.28571429
## 769 0.12500000 0.12500000
## 770 0.12500000 0.12500000
## 771 0.12500000 0.12500000
## 772 0.12500000 0.12500000
## 773 0.12500000 0.12500000
## 774 0.12500000 0.12500000
## 775 0.12500000 0.12500000
## 776 0.12500000 0.12500000
## 777 0.12500000 0.12500000
## 778 0.12500000 0.12500000
## 779 0.12500000 0.12500000
## 780 0.12500000 0.12500000
## 781 0.12500000 0.12500000
## 782 0.12500000 0.12500000
## 783 0.12500000 0.12500000
## 784 0.12500000 0.12500000
## 785 0.12500000 0.12500000
## 786 0.12500000 0.12500000
## 787 0.12500000 0.12500000
## 788 0.12500000 0.12500000
## 789 0.12500000 0.12500000
## 790 0.12500000 0.12500000
## 791 0.12500000 0.12500000
## 792 0.12500000 0.12500000
## 793 0.12500000 0.12500000
## 794 0.12500000 0.12500000
## 795 0.12500000 0.12500000
## 796 0.12500000 0.12500000
## 797 0.12500000 0.12500000
## 798 0.12500000 0.12500000
## 799 0.12500000 0.12500000
## 800 0.12500000 0.12500000
## 801 0.12500000 0.12500000
## 802 0.12500000 0.12500000
## 803 0.12500000 0.12500000
## 804 0.12500000 0.12500000
## 805 0.12500000 0.12500000
## 806 0.12500000 0.12500000
## 807 0.12500000 0.12500000
## 808 0.12500000 0.12500000
## 809 0.12500000 0.12500000
## 810 0.12500000 0.12500000
## 811 0.12500000 0.12500000
## 812 0.12500000 0.12500000
## 813 0.12500000 0.12500000
## 814 0.12500000 0.12500000
## 815 0.12500000 0.12500000
## 816 0.12500000 0.12500000
## 817 0.12500000 0.12500000
## 818 0.12500000 0.12500000
## 819 0.12500000 0.12500000
## 820 0.12500000 0.12500000
## 821 0.12500000 0.12500000
## 822 0.12500000 0.12500000
## 823 0.12500000 0.12500000
## 824 0.12500000 0.12500000
## 825 0.12500000 0.12500000
## 826 0.12500000 0.12500000
## 827 0.12500000 0.12500000
## 828 0.12500000 0.12500000
## 829 0.12500000 0.12500000
## 830 0.12500000 0.12500000
## 831 0.12500000 0.12500000
## 832 0.12500000 0.12500000
## 833 0.12500000 0.12500000
## 834 0.12500000 0.12500000
## 835 0.12500000 0.12500000
## 836 0.12500000 0.12500000
## 837 0.12500000 0.12500000
## 838 0.12500000 0.12500000
## 839 0.12500000 0.12500000
## 840 0.12500000 0.12500000
## 841 0.12500000 0.12500000
## 842 0.12500000 0.12500000
## 843 0.12500000 0.12500000
## 844 0.12500000 0.12500000
## 845 0.12500000 0.12500000
## 846 0.12500000 0.12500000
## 847 0.12500000 0.12500000
## 848 0.12500000 0.12500000
## 849 0.12500000 0.12500000
## 850 0.12500000 0.12500000
## 851 0.12500000 0.12500000
## 852 0.12500000 0.12500000
## 853 0.12500000 0.12500000
## 854 0.12500000 0.12500000
## 855 0.12500000 0.12500000
## 856 0.12500000 0.12500000
## 857 0.12500000 0.12500000
## 858 0.12500000 0.12500000
## 859 0.12500000 0.12500000
## 860 0.12500000 0.12500000
## 861 0.12500000 0.12500000
## 862 0.12500000 0.12500000
## 863 0.12500000 0.12500000
## 864 0.12500000 0.12500000
## 865 0.12500000 0.12500000
## 866 0.12500000 0.12500000
## 867 0.12500000 0.12500000
## 868 0.12500000 0.12500000
## 869 0.12500000 0.12500000
## 870 0.12500000 0.12500000
## 871 0.12500000 0.12500000
## 872 0.12500000 0.12500000
## 873 0.12500000 0.12500000
## 874 0.12500000 0.12500000
## 875 0.12500000 0.12500000
## 876 0.12500000 0.12500000
## 877 0.12500000 0.12500000
## 878 0.12500000 0.12500000
## 879 0.12500000 0.12500000
## 880 0.12500000 0.12500000
## 881 0.12500000 0.12500000
## 882 0.12500000 0.12500000
## 883 0.12500000 0.12500000
## 884 0.12500000 0.12500000
## 885 0.12500000 0.12500000
## 886 0.12500000 0.12500000
## 887 0.12500000 0.12500000
## 888 0.12500000 0.12500000
## 889 0.12500000 0.12500000
## 890 0.12500000 0.12500000
## 891 0.12500000 0.12500000
## 892 0.12500000 0.12500000
## 893 0.12500000 0.12500000
## 894 0.12500000 0.12500000
## 895 0.12500000 0.12500000
## 896 0.12500000 0.12500000
## 897 0.12500000 0.12500000
## 898 0.12500000 0.12500000
## 899 0.12500000 0.12500000
## 900 0.12500000 0.12500000
## 901 0.12500000 0.12500000
## 902 0.12500000 0.12500000
## 903 0.12500000 0.12500000
## 904 0.12500000 0.12500000
## 905 0.12500000 0.12500000
## 906 0.12500000 0.12500000
## 907 0.12500000 0.12500000
## 908 0.12500000 0.12500000
## 909 0.12500000 0.12500000
## 910 0.12500000 0.12500000
## 911 0.12500000 0.12500000
## 912 0.12500000 0.12500000
## 913 0.12500000 0.12500000
## 914 0.12500000 0.12500000
## 915 0.12500000 0.12500000
## 916 0.12500000 0.12500000
## 917 0.12500000 0.12500000
## 918 0.12500000 0.12500000
## 919 0.12500000 0.12500000
## 920 0.12500000 0.12500000
## 921 0.12500000 0.12500000
## 922 0.12500000 0.12500000
## 923 0.12500000 0.12500000
## 924 0.12500000 0.12500000
## 925 0.12500000 0.12500000
## 926 0.12500000 0.12500000
## 927 0.12500000 0.12500000
## 928 0.12500000 0.12500000
## 929 0.12500000 0.12500000
## 930 0.12500000 0.12500000
## 931 0.12500000 0.12500000
## 932 0.12500000 0.12500000
## 933 0.12500000 0.12500000
## 934 0.12500000 0.12500000
## 935 0.12500000 0.12500000
## 936 0.12500000 0.12500000
## 937 0.12500000 0.12500000
## 938 0.12500000 0.12500000
## 939 0.12500000 0.12500000
## 940 0.12500000 0.12500000
## 941 0.12500000 0.12500000
## 942 0.12500000 0.12500000
## 943 0.12500000 0.12500000
## 944 0.12500000 0.12500000
## 945 0.12500000 0.12500000
## 946 0.12500000 0.12500000
## 947 0.12500000 0.12500000
## 948 0.12500000 0.12500000
## 949 0.12500000 0.12500000
## 950 0.12500000 0.12500000
## 951 0.12500000 0.12500000
## 952 0.12500000 0.12500000
## 953 0.12500000 0.12500000
## 954 0.12500000 0.12500000
## 955 0.12500000 0.12500000
## 956 0.12500000 0.12500000
## 957 0.12500000 0.12500000
## 958 0.12500000 0.12500000
## 959 0.12500000 0.12500000
## 960 0.12500000 0.12500000
## 961 0.00000000 0.25000000
## 962 0.00000000 0.25000000
## 963 0.00000000 0.25000000
## 964 0.00000000 0.25000000
## 965 0.00000000 0.25000000
## 966 0.00000000 0.25000000
## 967 0.00000000 0.25000000
## 968 0.00000000 0.25000000
## 969 0.00000000 0.25000000
## 970 0.00000000 0.25000000
## 971 0.00000000 0.25000000
## 972 0.00000000 0.25000000
## 973 0.00000000 0.25000000
## 974 0.00000000 0.25000000
## 975 0.00000000 0.25000000
## 976 0.00000000 0.25000000
## 977 0.00000000 0.25000000
## 978 0.00000000 0.25000000
## 979 0.00000000 0.25000000
## 980 0.00000000 0.25000000
## 981 0.00000000 0.25000000
## 982 0.00000000 0.25000000
## 983 0.00000000 0.25000000
## 984 0.00000000 0.25000000
## 985 0.00000000 0.25000000
## 986 0.00000000 0.25000000
## 987 0.00000000 0.25000000
## 988 0.00000000 0.25000000
## 989 0.00000000 0.25000000
## 990 0.00000000 0.25000000
## 991 0.00000000 0.25000000
## 992 0.00000000 0.25000000
## 993 0.00000000 0.25000000
## 994 0.00000000 0.25000000
## 995 0.00000000 0.25000000
## 996 0.00000000 0.25000000
## 997 0.00000000 0.25000000
## 998 0.00000000 0.25000000
## 999 0.00000000 0.25000000
## 1000 0.00000000 0.25000000
## 1001 0.00000000 0.25000000
## 1002 0.00000000 0.25000000
## 1003 0.00000000 0.25000000
## 1004 0.00000000 0.25000000
## 1005 0.00000000 0.25000000
## 1006 0.00000000 0.25000000
## 1007 0.00000000 0.25000000
## 1008 0.00000000 0.25000000
## 1009 0.00000000 0.25000000
## 1010 0.00000000 0.25000000
## 1011 0.00000000 0.25000000
## 1012 0.00000000 0.25000000
## 1013 0.00000000 0.25000000
## 1014 0.00000000 0.25000000
## 1015 0.00000000 0.25000000
## 1016 0.00000000 0.25000000
## 1017 0.00000000 0.25000000
## 1018 0.00000000 0.25000000
## 1019 0.00000000 0.25000000
## 1020 0.00000000 0.25000000
## 1021 0.00000000 0.25000000
## 1022 0.00000000 0.25000000
## 1023 0.00000000 0.25000000
## 1024 0.00000000 0.25000000
## 1025 0.00000000 0.25000000
## 1026 0.00000000 0.25000000
## 1027 0.00000000 0.25000000
## 1028 0.00000000 0.25000000
## 1029 0.00000000 0.25000000
## 1030 0.00000000 0.25000000
## 1031 0.00000000 0.25000000
## 1032 0.00000000 0.25000000
## 1033 0.00000000 0.25000000
## 1034 0.00000000 0.25000000
## 1035 0.00000000 0.25000000
## 1036 0.00000000 0.25000000
## 1037 0.00000000 0.25000000
## 1038 0.00000000 0.25000000
## 1039 0.00000000 0.25000000
## 1040 0.00000000 0.25000000
## 1041 0.00000000 0.25000000
## 1042 0.00000000 0.25000000
## 1043 0.00000000 0.25000000
## 1044 0.00000000 0.25000000
## 1045 0.00000000 0.25000000
## 1046 0.00000000 0.25000000
## 1047 0.00000000 0.25000000
## 1048 0.00000000 0.25000000
## 1049 0.00000000 0.25000000
## 1050 0.00000000 0.25000000
## 1051 0.00000000 0.25000000
## 1052 0.00000000 0.25000000
## 1053 0.00000000 0.25000000
## 1054 0.00000000 0.25000000
## 1055 0.00000000 0.25000000
## 1056 0.00000000 0.25000000
## 1057 0.00000000 0.25000000
## 1058 0.00000000 0.25000000
## 1059 0.00000000 0.25000000
## 1060 0.00000000 0.25000000
## 1061 0.00000000 0.25000000
## 1062 0.00000000 0.25000000
## 1063 0.00000000 0.25000000
## 1064 0.00000000 0.25000000
## 1065 0.00000000 0.25000000
## 1066 0.00000000 0.25000000
## 1067 0.00000000 0.25000000
## 1068 0.00000000 0.25000000
## 1069 0.00000000 0.25000000
## 1070 0.00000000 0.25000000
## 1071 0.00000000 0.25000000
## 1072 0.00000000 0.25000000
## 1073 0.00000000 0.25000000
## 1074 0.00000000 0.25000000
## 1075 0.00000000 0.25000000
## 1076 0.00000000 0.25000000
## 1077 0.00000000 0.25000000
## 1078 0.00000000 0.25000000
## 1079 0.00000000 0.25000000
## 1080 0.00000000 0.25000000
## 1081 0.00000000 0.25000000
## 1082 0.00000000 0.25000000
## 1083 0.00000000 0.25000000
## 1084 0.00000000 0.25000000
## 1085 0.00000000 0.25000000
## 1086 0.00000000 0.25000000
## 1087 0.00000000 0.25000000
## 1088 0.00000000 0.25000000
## 1089 0.00000000 0.25000000
## 1090 0.00000000 0.25000000
## 1091 0.00000000 0.25000000
## 1092 0.00000000 0.25000000
## 1093 0.00000000 0.25000000
## 1094 0.00000000 0.25000000
## 1095 0.00000000 0.25000000
## 1096 0.00000000 0.25000000
## 1097 0.00000000 0.25000000
## 1098 0.00000000 0.25000000
## 1099 0.00000000 0.25000000
## 1100 0.00000000 0.25000000
## 1101 0.00000000 0.25000000
## 1102 0.00000000 0.25000000
## 1103 0.00000000 0.25000000
## 1104 0.00000000 0.25000000
## 1105 0.00000000 0.25000000
## 1106 0.00000000 0.25000000
## 1107 0.00000000 0.25000000
## 1108 0.00000000 0.25000000
## 1109 0.00000000 0.25000000
## 1110 0.00000000 0.25000000
## 1111 0.00000000 0.25000000
## 1112 0.00000000 0.25000000
## 1113 0.00000000 0.25000000
## 1114 0.00000000 0.25000000
## 1115 0.00000000 0.25000000
## 1116 0.00000000 0.25000000
## 1117 0.00000000 0.25000000
## 1118 0.00000000 0.25000000
## 1119 0.00000000 0.25000000
## 1120 0.00000000 0.25000000
## 1121 0.00000000 0.25000000
## 1122 0.00000000 0.25000000
## 1123 0.00000000 0.25000000
## 1124 0.00000000 0.25000000
## 1125 0.00000000 0.25000000
## 1126 0.00000000 0.25000000
## 1127 0.00000000 0.25000000
## 1128 0.00000000 0.25000000
## 1129 0.00000000 0.25000000
## 1130 0.00000000 0.25000000
## 1131 0.00000000 0.25000000
## 1132 0.00000000 0.25000000
## 1133 0.00000000 0.25000000
## 1134 0.00000000 0.25000000
## 1135 0.00000000 0.25000000
## 1136 0.00000000 0.25000000
## 1137 0.00000000 0.25000000
## 1138 0.00000000 0.25000000
## 1139 0.00000000 0.25000000
## 1140 0.00000000 0.25000000
## 1141 0.00000000 0.25000000
## 1142 0.00000000 0.25000000
## 1143 0.00000000 0.25000000
## 1144 0.00000000 0.25000000
## 1145 0.00000000 0.25000000
## 1146 0.00000000 0.25000000
## 1147 0.00000000 0.25000000
## 1148 0.00000000 0.25000000
## 1149 0.00000000 0.25000000
## 1150 0.00000000 0.25000000
## 1151 0.00000000 0.25000000
## 1152 0.00000000 0.25000000
## 1153 0.05147059 0.17647059
## 1154 0.05147059 0.17647059
## 1155 0.05147059 0.17647059
## 1156 0.05147059 0.17647059
## 1157 0.05147059 0.17647059
## 1158 0.05147059 0.17647059
## 1159 0.05147059 0.17647059
## 1160 0.05147059 0.17647059
## 1161 0.05147059 0.17647059
## 1162 0.05147059 0.17647059
## 1163 0.05147059 0.17647059
## 1164 0.05147059 0.17647059
## 1165 0.05147059 0.17647059
## 1166 0.05147059 0.17647059
## 1167 0.05147059 0.17647059
## 1168 0.05147059 0.17647059
## 1169 0.05147059 0.17647059
## 1170 0.05147059 0.17647059
## 1171 0.05147059 0.17647059
## 1172 0.05147059 0.17647059
## 1173 0.05147059 0.17647059
## 1174 0.05147059 0.17647059
## 1175 0.05147059 0.17647059
## 1176 0.05147059 0.17647059
## 1177 0.05147059 0.17647059
## 1178 0.05147059 0.17647059
## 1179 0.05147059 0.17647059
## 1180 0.05147059 0.17647059
## 1181 0.05147059 0.17647059
## 1182 0.05147059 0.17647059
## 1183 0.05147059 0.17647059
## 1184 0.05147059 0.17647059
## 1185 0.05147059 0.17647059
## 1186 0.05147059 0.17647059
## 1187 0.05147059 0.17647059
## 1188 0.05147059 0.17647059
## 1189 0.05147059 0.17647059
## 1190 0.05147059 0.17647059
## 1191 0.05147059 0.17647059
## 1192 0.05147059 0.17647059
## 1193 0.05147059 0.17647059
## 1194 0.05147059 0.17647059
## 1195 0.05147059 0.17647059
## 1196 0.05147059 0.17647059
## 1197 0.05147059 0.17647059
## 1198 0.05147059 0.17647059
## 1199 0.05147059 0.17647059
## 1200 0.05147059 0.17647059
## 1201 0.05147059 0.17647059
## 1202 0.05147059 0.17647059
## 1203 0.05147059 0.17647059
## 1204 0.05147059 0.17647059
## 1205 0.05147059 0.17647059
## 1206 0.05147059 0.17647059
## 1207 0.05147059 0.17647059
## 1208 0.05147059 0.17647059
## 1209 0.05147059 0.17647059
## 1210 0.05147059 0.17647059
## 1211 0.05147059 0.17647059
## 1212 0.05147059 0.17647059
## 1213 0.05147059 0.17647059
## 1214 0.05147059 0.17647059
## 1215 0.05147059 0.17647059
## 1216 0.05147059 0.17647059
## 1217 0.05147059 0.17647059
## 1218 0.05147059 0.17647059
## 1219 0.05147059 0.17647059
## 1220 0.05147059 0.17647059
## 1221 0.05147059 0.17647059
## 1222 0.05147059 0.17647059
## 1223 0.05147059 0.17647059
## 1224 0.05147059 0.17647059
## 1225 0.05147059 0.17647059
## 1226 0.05147059 0.17647059
## 1227 0.05147059 0.17647059
## 1228 0.05147059 0.17647059
## 1229 0.05147059 0.17647059
## 1230 0.05147059 0.17647059
## 1231 0.05147059 0.17647059
## 1232 0.05147059 0.17647059
## 1233 0.05147059 0.17647059
## 1234 0.05147059 0.17647059
## 1235 0.05147059 0.17647059
## 1236 0.05147059 0.17647059
## 1237 0.05147059 0.17647059
## 1238 0.05147059 0.17647059
## 1239 0.05147059 0.17647059
## 1240 0.05147059 0.17647059
## 1241 0.05147059 0.17647059
## 1242 0.05147059 0.17647059
## 1243 0.05147059 0.17647059
## 1244 0.05147059 0.17647059
## 1245 0.05147059 0.17647059
## 1246 0.05147059 0.17647059
## 1247 0.05147059 0.17647059
## 1248 0.05147059 0.17647059
## 1249 0.05147059 0.17647059
## 1250 0.05147059 0.17647059
## 1251 0.05147059 0.17647059
## 1252 0.05147059 0.17647059
## 1253 0.05147059 0.17647059
## 1254 0.05147059 0.17647059
## 1255 0.05147059 0.17647059
## 1256 0.05147059 0.17647059
## 1257 0.05147059 0.17647059
## 1258 0.05147059 0.17647059
## 1259 0.05147059 0.17647059
## 1260 0.05147059 0.17647059
## 1261 0.05147059 0.17647059
## 1262 0.05147059 0.17647059
## 1263 0.05147059 0.17647059
## 1264 0.05147059 0.17647059
## 1265 0.05147059 0.17647059
## 1266 0.05147059 0.17647059
## 1267 0.05147059 0.17647059
## 1268 0.05147059 0.17647059
## 1269 0.05147059 0.17647059
## 1270 0.05147059 0.17647059
## 1271 0.05147059 0.17647059
## 1272 0.05147059 0.17647059
## 1273 0.05147059 0.17647059
## 1274 0.05147059 0.17647059
## 1275 0.05147059 0.17647059
## 1276 0.05147059 0.17647059
## 1277 0.05147059 0.17647059
## 1278 0.05147059 0.17647059
## 1279 0.05147059 0.17647059
## 1280 0.05147059 0.17647059
## 1281 0.05147059 0.17647059
## 1282 0.05147059 0.17647059
## 1283 0.05147059 0.17647059
## 1284 0.05147059 0.17647059
## 1285 0.05147059 0.17647059
## 1286 0.05147059 0.17647059
## 1287 0.05147059 0.17647059
## 1288 0.05147059 0.17647059
## 1289 0.05147059 0.17647059
## 1290 0.05147059 0.17647059
## 1291 0.05147059 0.17647059
## 1292 0.05147059 0.17647059
## 1293 0.05147059 0.17647059
## 1294 0.05147059 0.17647059
## 1295 0.05147059 0.17647059
## 1296 0.05147059 0.17647059
## 1297 0.05147059 0.17647059
## 1298 0.05147059 0.17647059
## 1299 0.05147059 0.17647059
## 1300 0.05147059 0.17647059
## 1301 0.05147059 0.17647059
## 1302 0.05147059 0.17647059
## 1303 0.05147059 0.17647059
## 1304 0.05147059 0.17647059
## 1305 0.05147059 0.17647059
## 1306 0.05147059 0.17647059
## 1307 0.05147059 0.17647059
## 1308 0.05147059 0.17647059
## 1309 0.05147059 0.17647059
## 1310 0.05147059 0.17647059
## 1311 0.05147059 0.17647059
## 1312 0.05147059 0.17647059
## 1313 0.05147059 0.17647059
## 1314 0.05147059 0.17647059
## 1315 0.05147059 0.17647059
## 1316 0.05147059 0.17647059
## 1317 0.05147059 0.17647059
## 1318 0.05147059 0.17647059
## 1319 0.05147059 0.17647059
## 1320 0.05147059 0.17647059
## 1321 0.05147059 0.17647059
## 1322 0.05147059 0.17647059
## 1323 0.05147059 0.17647059
## 1324 0.05147059 0.17647059
## 1325 0.05147059 0.17647059
## 1326 0.05147059 0.17647059
## 1327 0.05147059 0.17647059
## 1328 0.05147059 0.17647059
## 1329 0.05147059 0.17647059
## 1330 0.05147059 0.17647059
## 1331 0.05147059 0.17647059
## 1332 0.05147059 0.17647059
## 1333 0.05147059 0.17647059
## 1334 0.05147059 0.17647059
## 1335 0.05147059 0.17647059
## 1336 0.05147059 0.17647059
## 1337 0.05147059 0.17647059
## 1338 0.05147059 0.17647059
## 1339 0.05147059 0.17647059
## 1340 0.05147059 0.17647059
## 1341 0.05147059 0.17647059
## 1342 0.05147059 0.17647059
## 1343 0.05147059 0.17647059
## 1344 0.05147059 0.17647059
## 1345 0.05147059 0.17647059
## 1346 0.05147059 0.17647059
## 1347 0.05147059 0.17647059
## 1348 0.05147059 0.17647059
## 1349 0.05147059 0.17647059
## 1350 0.05147059 0.17647059
## 1351 0.05147059 0.17647059
## 1352 0.05147059 0.17647059
## 1353 0.05147059 0.17647059
## 1354 0.05147059 0.17647059
## 1355 0.05147059 0.17647059
## 1356 0.05147059 0.17647059
## 1357 0.05147059 0.17647059
## 1358 0.05147059 0.17647059
## 1359 0.05147059 0.17647059
## 1360 0.05147059 0.17647059
## 1361 0.05147059 0.17647059
## 1362 0.05147059 0.17647059
## 1363 0.05147059 0.17647059
## 1364 0.05147059 0.17647059
## 1365 0.05147059 0.17647059
## 1366 0.05147059 0.17647059
## 1367 0.05147059 0.17647059
## 1368 0.05147059 0.17647059
## 1369 0.05147059 0.17647059
## 1370 0.05147059 0.17647059
## 1371 0.05147059 0.17647059
## 1372 0.05147059 0.17647059
## 1373 0.05147059 0.17647059
## 1374 0.05147059 0.17647059
## 1375 0.05147059 0.17647059
## 1376 0.05147059 0.17647059
## 1377 0.05147059 0.17647059
## 1378 0.05147059 0.17647059
## 1379 0.05147059 0.17647059
## 1380 0.05147059 0.17647059
## 1381 0.05147059 0.17647059
## 1382 0.05147059 0.17647059
## 1383 0.05147059 0.17647059
## 1384 0.05147059 0.17647059
## 1385 0.05147059 0.17647059
## 1386 0.05147059 0.17647059
## 1387 0.05147059 0.17647059
## 1388 0.05147059 0.17647059
## 1389 0.05147059 0.17647059
## 1390 0.05147059 0.17647059
## 1391 0.05147059 0.17647059
## 1392 0.05147059 0.17647059
## 1393 0.05147059 0.17647059
## 1394 0.05147059 0.17647059
## 1395 0.05147059 0.17647059
## 1396 0.05147059 0.17647059
## 1397 0.05147059 0.17647059
## 1398 0.05147059 0.17647059
## 1399 0.05147059 0.17647059
## 1400 0.05147059 0.17647059
## 1401 0.05147059 0.17647059
## 1402 0.05147059 0.17647059
## 1403 0.05147059 0.17647059
## 1404 0.05147059 0.17647059
## 1405 0.05147059 0.17647059
## 1406 0.05147059 0.17647059
## 1407 0.05147059 0.17647059
## 1408 0.05147059 0.17647059
## 1409 0.05147059 0.17647059
## 1410 0.05147059 0.17647059
## 1411 0.05147059 0.17647059
## 1412 0.05147059 0.17647059
## 1413 0.05147059 0.17647059
## 1414 0.05147059 0.17647059
## 1415 0.05147059 0.17647059
## 1416 0.05147059 0.17647059
## 1417 0.05147059 0.17647059
## 1418 0.05147059 0.17647059
## 1419 0.05147059 0.17647059
## 1420 0.05147059 0.17647059
## 1421 0.05147059 0.17647059
## 1422 0.05147059 0.17647059
## 1423 0.05147059 0.17647059
## 1424 0.05147059 0.17647059
## 1425 0.05147059 0.17647059
## 1426 0.05147059 0.17647059
## 1427 0.05147059 0.17647059
## 1428 0.05147059 0.17647059
## 1429 0.05147059 0.17647059
## 1430 0.05147059 0.17647059
## 1431 0.05147059 0.17647059
## 1432 0.05147059 0.17647059
## 1433 0.05147059 0.17647059
## 1434 0.05147059 0.17647059
## 1435 0.05147059 0.17647059
## 1436 0.05147059 0.17647059
## 1437 0.05147059 0.17647059
## 1438 0.05147059 0.17647059
## 1439 0.05147059 0.17647059
## 1440 0.05147059 0.17647059
## 1441 0.05147059 0.17647059
## 1442 0.05147059 0.17647059
## 1443 0.05147059 0.17647059
## 1444 0.05147059 0.17647059
## 1445 0.05147059 0.17647059
## 1446 0.05147059 0.17647059
## 1447 0.05147059 0.17647059
## 1448 0.05147059 0.17647059
## 1449 0.05147059 0.17647059
## 1450 0.05147059 0.17647059
## 1451 0.05147059 0.17647059
## 1452 0.05147059 0.17647059
## 1453 0.05147059 0.17647059
## 1454 0.05147059 0.17647059
## 1455 0.05147059 0.17647059
## 1456 0.05147059 0.17647059
## 1457 0.05147059 0.17647059
## 1458 0.05147059 0.17647059
## 1459 0.05147059 0.17647059
## 1460 0.05147059 0.17647059
## 1461 0.05147059 0.17647059
## 1462 0.05147059 0.17647059
## 1463 0.05147059 0.17647059
## 1464 0.05147059 0.17647059
## 1465 0.05147059 0.17647059
## 1466 0.05147059 0.17647059
## 1467 0.05147059 0.17647059
## 1468 0.05147059 0.17647059
## 1469 0.05147059 0.17647059
## 1470 0.05147059 0.17647059
## 1471 0.05147059 0.17647059
## 1472 0.05147059 0.17647059
## 1473 0.05147059 0.17647059
## 1474 0.05147059 0.17647059
## 1475 0.05147059 0.17647059
## 1476 0.05147059 0.17647059
## 1477 0.05147059 0.17647059
## 1478 0.05147059 0.17647059
## 1479 0.05147059 0.17647059
## 1480 0.05147059 0.17647059
## 1481 0.05147059 0.17647059
## 1482 0.05147059 0.17647059
## 1483 0.05147059 0.17647059
## 1484 0.05147059 0.17647059
## 1485 0.05147059 0.17647059
## 1486 0.05147059 0.17647059
## 1487 0.05147059 0.17647059
## 1488 0.05147059 0.17647059
## 1489 0.05147059 0.17647059
## 1490 0.05147059 0.17647059
## 1491 0.05147059 0.17647059
## 1492 0.05147059 0.17647059
## 1493 0.05147059 0.17647059
## 1494 0.05147059 0.17647059
## 1495 0.05147059 0.17647059
## 1496 0.05147059 0.17647059
## 1497 0.05147059 0.17647059
## 1498 0.05147059 0.17647059
## 1499 0.05147059 0.17647059
## 1500 0.05147059 0.17647059
## 1501 0.05147059 0.17647059
## 1502 0.05147059 0.17647059
## 1503 0.05147059 0.17647059
## 1504 0.05147059 0.17647059
## 1505 0.05147059 0.17647059
## 1506 0.05147059 0.17647059
## 1507 0.05147059 0.17647059
## 1508 0.05147059 0.17647059
## 1509 0.05147059 0.17647059
## 1510 0.05147059 0.17647059
## 1511 0.05147059 0.17647059
## 1512 0.05147059 0.17647059
## 1513 0.05147059 0.17647059
## 1514 0.05147059 0.17647059
## 1515 0.05147059 0.17647059
## 1516 0.05147059 0.17647059
## 1517 0.05147059 0.17647059
## 1518 0.05147059 0.17647059
## 1519 0.05147059 0.17647059
## 1520 0.05147059 0.17647059
## 1521 0.05147059 0.17647059
## 1522 0.05147059 0.17647059
## 1523 0.05147059 0.17647059
## 1524 0.05147059 0.17647059
## 1525 0.05147059 0.17647059
## 1526 0.05147059 0.17647059
## 1527 0.05147059 0.17647059
## 1528 0.05147059 0.17647059
## 1529 0.05147059 0.17647059
## 1530 0.05147059 0.17647059
## 1531 0.05147059 0.17647059
## 1532 0.05147059 0.17647059
## 1533 0.05147059 0.17647059
## 1534 0.05147059 0.17647059
## 1535 0.05147059 0.17647059
## 1536 0.05147059 0.17647059
## 1537 0.05714286 0.20000000
## 1538 0.05714286 0.20000000
## 1539 0.05714286 0.20000000
## 1540 0.05714286 0.20000000
## 1541 0.05714286 0.20000000
## 1542 0.05714286 0.20000000
## 1543 0.05714286 0.20000000
## 1544 0.05714286 0.20000000
## 1545 0.05714286 0.20000000
## 1546 0.05714286 0.20000000
## 1547 0.05714286 0.20000000
## 1548 0.05714286 0.20000000
## 1549 0.05714286 0.20000000
## 1550 0.05714286 0.20000000
## 1551 0.05714286 0.20000000
## 1552 0.05714286 0.20000000
## 1553 0.05714286 0.20000000
## 1554 0.05714286 0.20000000
## 1555 0.05714286 0.20000000
## 1556 0.05714286 0.20000000
## 1557 0.05714286 0.20000000
## 1558 0.05714286 0.20000000
## 1559 0.05714286 0.20000000
## 1560 0.05714286 0.20000000
## 1561 0.05714286 0.20000000
## 1562 0.05714286 0.20000000
## 1563 0.05714286 0.20000000
## 1564 0.05714286 0.20000000
## 1565 0.05714286 0.20000000
## 1566 0.05714286 0.20000000
## 1567 0.05714286 0.20000000
## 1568 0.05714286 0.20000000
## 1569 0.05714286 0.20000000
## 1570 0.05714286 0.20000000
## 1571 0.05714286 0.20000000
## 1572 0.05714286 0.20000000
## 1573 0.05714286 0.20000000
## 1574 0.05714286 0.20000000
## 1575 0.05714286 0.20000000
## 1576 0.05714286 0.20000000
## 1577 0.05714286 0.20000000
## 1578 0.05714286 0.20000000
## 1579 0.05714286 0.20000000
## 1580 0.05714286 0.20000000
## 1581 0.05714286 0.20000000
## 1582 0.05714286 0.20000000
## 1583 0.05714286 0.20000000
## 1584 0.05714286 0.20000000
## 1585 0.05714286 0.20000000
## 1586 0.05714286 0.20000000
## 1587 0.05714286 0.20000000
## 1588 0.05714286 0.20000000
## 1589 0.05714286 0.20000000
## 1590 0.05714286 0.20000000
## 1591 0.05714286 0.20000000
## 1592 0.05714286 0.20000000
## 1593 0.05714286 0.20000000
## 1594 0.05714286 0.20000000
## 1595 0.05714286 0.20000000
## 1596 0.05714286 0.20000000
## 1597 0.05714286 0.20000000
## 1598 0.05714286 0.20000000
## 1599 0.05714286 0.20000000
## 1600 0.05714286 0.20000000
## 1601 0.05714286 0.20000000
## 1602 0.05714286 0.20000000
## 1603 0.05714286 0.20000000
## 1604 0.05714286 0.20000000
## 1605 0.05714286 0.20000000
## 1606 0.05714286 0.20000000
## 1607 0.05714286 0.20000000
## 1608 0.05714286 0.20000000
## 1609 0.05714286 0.20000000
## 1610 0.05714286 0.20000000
## 1611 0.05714286 0.20000000
## 1612 0.05714286 0.20000000
## 1613 0.05714286 0.20000000
## 1614 0.05714286 0.20000000
## 1615 0.05714286 0.20000000
## 1616 0.05714286 0.20000000
## 1617 0.05714286 0.20000000
## 1618 0.05714286 0.20000000
## 1619 0.05714286 0.20000000
## 1620 0.05714286 0.20000000
## 1621 0.05714286 0.20000000
## 1622 0.05714286 0.20000000
## 1623 0.05714286 0.20000000
## 1624 0.05714286 0.20000000
## 1625 0.05714286 0.20000000
## 1626 0.05714286 0.20000000
## 1627 0.05714286 0.20000000
## 1628 0.05714286 0.20000000
## 1629 0.05714286 0.20000000
## 1630 0.05714286 0.20000000
## 1631 0.05714286 0.20000000
## 1632 0.05714286 0.20000000
## 1633 0.05714286 0.20000000
## 1634 0.05714286 0.20000000
## 1635 0.05714286 0.20000000
## 1636 0.05714286 0.20000000
## 1637 0.05714286 0.20000000
## 1638 0.05714286 0.20000000
## 1639 0.05714286 0.20000000
## 1640 0.05714286 0.20000000
## 1641 0.05714286 0.20000000
## 1642 0.05714286 0.20000000
## 1643 0.05714286 0.20000000
## 1644 0.05714286 0.20000000
## 1645 0.05714286 0.20000000
## 1646 0.05714286 0.20000000
## 1647 0.05714286 0.20000000
## 1648 0.05714286 0.20000000
## 1649 0.05714286 0.20000000
## 1650 0.05714286 0.20000000
## 1651 0.05714286 0.20000000
## 1652 0.05714286 0.20000000
## 1653 0.05714286 0.20000000
## 1654 0.05714286 0.20000000
## 1655 0.05714286 0.20000000
## 1656 0.05714286 0.20000000
## 1657 0.05714286 0.20000000
## 1658 0.05714286 0.20000000
## 1659 0.05714286 0.20000000
## 1660 0.05714286 0.20000000
## 1661 0.05714286 0.20000000
## 1662 0.05714286 0.20000000
## 1663 0.05714286 0.20000000
## 1664 0.05714286 0.20000000
## 1665 0.05714286 0.20000000
## 1666 0.05714286 0.20000000
## 1667 0.05714286 0.20000000
## 1668 0.05714286 0.20000000
## 1669 0.05714286 0.20000000
## 1670 0.05714286 0.20000000
## 1671 0.05714286 0.20000000
## 1672 0.05714286 0.20000000
## 1673 0.05714286 0.20000000
## 1674 0.05714286 0.20000000
## 1675 0.05714286 0.20000000
## 1676 0.05714286 0.20000000
## 1677 0.05714286 0.20000000
## 1678 0.05714286 0.20000000
## 1679 0.05714286 0.20000000
## 1680 0.05714286 0.20000000
## 1681 0.05714286 0.20000000
## 1682 0.05714286 0.20000000
## 1683 0.05714286 0.20000000
## 1684 0.05714286 0.20000000
## 1685 0.05714286 0.20000000
## 1686 0.05714286 0.20000000
## 1687 0.05714286 0.20000000
## 1688 0.05714286 0.20000000
## 1689 0.05714286 0.20000000
## 1690 0.05714286 0.20000000
## 1691 0.05714286 0.20000000
## 1692 0.05714286 0.20000000
## 1693 0.05714286 0.20000000
## 1694 0.05714286 0.20000000
## 1695 0.05714286 0.20000000
## 1696 0.05714286 0.20000000
## 1697 0.05714286 0.20000000
## 1698 0.05714286 0.20000000
## 1699 0.05714286 0.20000000
## 1700 0.05714286 0.20000000
## 1701 0.05714286 0.20000000
## 1702 0.05714286 0.20000000
## 1703 0.05714286 0.20000000
## 1704 0.05714286 0.20000000
## 1705 0.05714286 0.20000000
## 1706 0.05714286 0.20000000
## 1707 0.05714286 0.20000000
## 1708 0.05714286 0.20000000
## 1709 0.05714286 0.20000000
## 1710 0.05714286 0.20000000
## 1711 0.05714286 0.20000000
## 1712 0.05714286 0.20000000
## 1713 0.05714286 0.20000000
## 1714 0.05714286 0.20000000
## 1715 0.05714286 0.20000000
## 1716 0.05714286 0.20000000
## 1717 0.05714286 0.20000000
## 1718 0.05714286 0.20000000
## 1719 0.05714286 0.20000000
## 1720 0.05714286 0.20000000
## 1721 0.05714286 0.20000000
## 1722 0.05714286 0.20000000
## 1723 0.05714286 0.20000000
## 1724 0.05714286 0.20000000
## 1725 0.05714286 0.20000000
## 1726 0.05714286 0.20000000
## 1727 0.05714286 0.20000000
## 1728 0.05714286 0.20000000
## 1729 0.05882353 0.05882353
## 1730 0.05882353 0.05882353
## 1731 0.05882353 0.05882353
## 1732 0.05882353 0.05882353
## 1733 0.05882353 0.05882353
## 1734 0.05882353 0.05882353
## 1735 0.05882353 0.05882353
## 1736 0.05882353 0.05882353
## 1737 0.05882353 0.05882353
## 1738 0.05882353 0.05882353
## 1739 0.05882353 0.05882353
## 1740 0.05882353 0.05882353
## 1741 0.05882353 0.05882353
## 1742 0.05882353 0.05882353
## 1743 0.05882353 0.05882353
## 1744 0.05882353 0.05882353
## 1745 0.05882353 0.05882353
## 1746 0.05882353 0.05882353
## 1747 0.05882353 0.05882353
## 1748 0.05882353 0.05882353
## 1749 0.05882353 0.05882353
## 1750 0.05882353 0.05882353
## 1751 0.05882353 0.05882353
## 1752 0.05882353 0.05882353
## 1753 0.05882353 0.05882353
## 1754 0.05882353 0.05882353
## 1755 0.05882353 0.05882353
## 1756 0.05882353 0.05882353
## 1757 0.05882353 0.05882353
## 1758 0.05882353 0.05882353
## 1759 0.05882353 0.05882353
## 1760 0.05882353 0.05882353
## 1761 0.05882353 0.05882353
## 1762 0.05882353 0.05882353
## 1763 0.05882353 0.05882353
## 1764 0.05882353 0.05882353
## 1765 0.05882353 0.05882353
## 1766 0.05882353 0.05882353
## 1767 0.05882353 0.05882353
## 1768 0.05882353 0.05882353
## 1769 0.05882353 0.05882353
## 1770 0.05882353 0.05882353
## 1771 0.05882353 0.05882353
## 1772 0.05882353 0.05882353
## 1773 0.05882353 0.05882353
## 1774 0.05882353 0.05882353
## 1775 0.05882353 0.05882353
## 1776 0.05882353 0.05882353
## 1777 0.05882353 0.05882353
## 1778 0.05882353 0.05882353
## 1779 0.05882353 0.05882353
## 1780 0.05882353 0.05882353
## 1781 0.05882353 0.05882353
## 1782 0.05882353 0.05882353
## 1783 0.05882353 0.05882353
## 1784 0.05882353 0.05882353
## 1785 0.05882353 0.05882353
## 1786 0.05882353 0.05882353
## 1787 0.05882353 0.05882353
## 1788 0.05882353 0.05882353
## 1789 0.05882353 0.05882353
## 1790 0.05882353 0.05882353
## 1791 0.05882353 0.05882353
## 1792 0.05882353 0.05882353
## 1793 0.05882353 0.05882353
## 1794 0.05882353 0.05882353
## 1795 0.05882353 0.05882353
## 1796 0.05882353 0.05882353
## 1797 0.05882353 0.05882353
## 1798 0.05882353 0.05882353
## 1799 0.05882353 0.05882353
## 1800 0.05882353 0.05882353
## 1801 0.05882353 0.05882353
## 1802 0.05882353 0.05882353
## 1803 0.05882353 0.05882353
## 1804 0.05882353 0.05882353
## 1805 0.05882353 0.05882353
## 1806 0.05882353 0.05882353
## 1807 0.05882353 0.05882353
## 1808 0.05882353 0.05882353
## 1809 0.05882353 0.05882353
## 1810 0.05882353 0.05882353
## 1811 0.05882353 0.05882353
## 1812 0.05882353 0.05882353
## 1813 0.05882353 0.05882353
## 1814 0.05882353 0.05882353
## 1815 0.05882353 0.05882353
## 1816 0.05882353 0.05882353
## 1817 0.05882353 0.05882353
## 1818 0.05882353 0.05882353
## 1819 0.05882353 0.05882353
## 1820 0.05882353 0.05882353
## 1821 0.05882353 0.05882353
## 1822 0.05882353 0.05882353
## 1823 0.05882353 0.05882353
## 1824 0.05882353 0.05882353
## 1825 0.05882353 0.05882353
## 1826 0.05882353 0.05882353
## 1827 0.05882353 0.05882353
## 1828 0.05882353 0.05882353
## 1829 0.05882353 0.05882353
## 1830 0.05882353 0.05882353
## 1831 0.05882353 0.05882353
## 1832 0.05882353 0.05882353
## 1833 0.05882353 0.05882353
## 1834 0.05882353 0.05882353
## 1835 0.05882353 0.05882353
## 1836 0.05882353 0.05882353
## 1837 0.05882353 0.05882353
## 1838 0.05882353 0.05882353
## 1839 0.05882353 0.05882353
## 1840 0.05882353 0.05882353
## 1841 0.05882353 0.05882353
## 1842 0.05882353 0.05882353
## 1843 0.05882353 0.05882353
## 1844 0.05882353 0.05882353
## 1845 0.05882353 0.05882353
## 1846 0.05882353 0.05882353
## 1847 0.05882353 0.05882353
## 1848 0.05882353 0.05882353
## 1849 0.05882353 0.05882353
## 1850 0.05882353 0.05882353
## 1851 0.05882353 0.05882353
## 1852 0.05882353 0.05882353
## 1853 0.05882353 0.05882353
## 1854 0.05882353 0.05882353
## 1855 0.05882353 0.05882353
## 1856 0.05882353 0.05882353
## 1857 0.05882353 0.05882353
## 1858 0.05882353 0.05882353
## 1859 0.05882353 0.05882353
## 1860 0.05882353 0.05882353
## 1861 0.05882353 0.05882353
## 1862 0.05882353 0.05882353
## 1863 0.05882353 0.05882353
## 1864 0.05882353 0.05882353
## 1865 0.05882353 0.05882353
## 1866 0.05882353 0.05882353
## 1867 0.05882353 0.05882353
## 1868 0.05882353 0.05882353
## 1869 0.05882353 0.05882353
## 1870 0.05882353 0.05882353
## 1871 0.05882353 0.05882353
## 1872 0.05882353 0.05882353
## 1873 0.05882353 0.05882353
## 1874 0.05882353 0.05882353
## 1875 0.05882353 0.05882353
## 1876 0.05882353 0.05882353
## 1877 0.05882353 0.05882353
## 1878 0.05882353 0.05882353
## 1879 0.05882353 0.05882353
## 1880 0.05882353 0.05882353
## 1881 0.05882353 0.05882353
## 1882 0.05882353 0.05882353
## 1883 0.05882353 0.05882353
## 1884 0.05882353 0.05882353
## 1885 0.05882353 0.05882353
## 1886 0.05882353 0.05882353
## 1887 0.05882353 0.05882353
## 1888 0.05882353 0.05882353
## 1889 0.05882353 0.05882353
## 1890 0.05882353 0.05882353
## 1891 0.05882353 0.05882353
## 1892 0.05882353 0.05882353
## 1893 0.05882353 0.05882353
## 1894 0.05882353 0.05882353
## 1895 0.05882353 0.05882353
## 1896 0.05882353 0.05882353
## 1897 0.05882353 0.05882353
## 1898 0.05882353 0.05882353
## 1899 0.05882353 0.05882353
## 1900 0.05882353 0.05882353
## 1901 0.05882353 0.05882353
## 1902 0.05882353 0.05882353
## 1903 0.05882353 0.05882353
## 1904 0.05882353 0.05882353
## 1905 0.05882353 0.05882353
## 1906 0.05882353 0.05882353
## 1907 0.05882353 0.05882353
## 1908 0.05882353 0.05882353
## 1909 0.05882353 0.05882353
## 1910 0.05882353 0.05882353
## 1911 0.05882353 0.05882353
## 1912 0.05882353 0.05882353
## 1913 0.05882353 0.05882353
## 1914 0.05882353 0.05882353
## 1915 0.05882353 0.05882353
## 1916 0.05882353 0.05882353
## 1917 0.05882353 0.05882353
## 1918 0.05882353 0.05882353
## 1919 0.05882353 0.05882353
## 1920 0.05882353 0.05882353
## 1921 0.14285714 0.14285714
## 1922 0.14285714 0.14285714
## 1923 0.14285714 0.14285714
## 1924 0.14285714 0.14285714
## 1925 0.14285714 0.14285714
## 1926 0.14285714 0.14285714
## 1927 0.14285714 0.14285714
## 1928 0.14285714 0.14285714
## 1929 0.14285714 0.14285714
## 1930 0.14285714 0.14285714
## 1931 0.14285714 0.14285714
## 1932 0.14285714 0.14285714
## 1933 0.14285714 0.14285714
## 1934 0.14285714 0.14285714
## 1935 0.14285714 0.14285714
## 1936 0.14285714 0.14285714
## 1937 0.14285714 0.14285714
## 1938 0.14285714 0.14285714
## 1939 0.14285714 0.14285714
## 1940 0.14285714 0.14285714
## 1941 0.14285714 0.14285714
## 1942 0.14285714 0.14285714
## 1943 0.14285714 0.14285714
## 1944 0.14285714 0.14285714
## 1945 0.14285714 0.14285714
## 1946 0.14285714 0.14285714
## 1947 0.14285714 0.14285714
## 1948 0.14285714 0.14285714
## 1949 0.14285714 0.14285714
## 1950 0.14285714 0.14285714
## 1951 0.14285714 0.14285714
## 1952 0.14285714 0.14285714
## 1953 0.14285714 0.14285714
## 1954 0.14285714 0.14285714
## 1955 0.14285714 0.14285714
## 1956 0.14285714 0.14285714
## 1957 0.14285714 0.14285714
## 1958 0.14285714 0.14285714
## 1959 0.14285714 0.14285714
## 1960 0.14285714 0.14285714
## 1961 0.14285714 0.14285714
## 1962 0.14285714 0.14285714
## 1963 0.14285714 0.14285714
## 1964 0.14285714 0.14285714
## 1965 0.14285714 0.14285714
## 1966 0.14285714 0.14285714
## 1967 0.14285714 0.14285714
## 1968 0.14285714 0.14285714
## 1969 0.14285714 0.14285714
## 1970 0.14285714 0.14285714
## 1971 0.14285714 0.14285714
## 1972 0.14285714 0.14285714
## 1973 0.14285714 0.14285714
## 1974 0.14285714 0.14285714
## 1975 0.14285714 0.14285714
## 1976 0.14285714 0.14285714
## 1977 0.14285714 0.14285714
## 1978 0.14285714 0.14285714
## 1979 0.14285714 0.14285714
## 1980 0.14285714 0.14285714
## 1981 0.14285714 0.14285714
## 1982 0.14285714 0.14285714
## 1983 0.14285714 0.14285714
## 1984 0.14285714 0.14285714
## 1985 0.14285714 0.14285714
## 1986 0.14285714 0.14285714
## 1987 0.14285714 0.14285714
## 1988 0.14285714 0.14285714
## 1989 0.14285714 0.14285714
## 1990 0.14285714 0.14285714
## 1991 0.14285714 0.14285714
## 1992 0.14285714 0.14285714
## 1993 0.14285714 0.14285714
## 1994 0.14285714 0.14285714
## 1995 0.14285714 0.14285714
## 1996 0.14285714 0.14285714
## 1997 0.14285714 0.14285714
## 1998 0.14285714 0.14285714
## 1999 0.14285714 0.14285714
## 2000 0.14285714 0.14285714
## 2001 0.14285714 0.14285714
## 2002 0.14285714 0.14285714
## 2003 0.14285714 0.14285714
## 2004 0.14285714 0.14285714
## 2005 0.14285714 0.14285714
## 2006 0.14285714 0.14285714
## 2007 0.14285714 0.14285714
## 2008 0.14285714 0.14285714
## 2009 0.14285714 0.14285714
## 2010 0.14285714 0.14285714
## 2011 0.14285714 0.14285714
## 2012 0.14285714 0.14285714
## 2013 0.14285714 0.14285714
## 2014 0.14285714 0.14285714
## 2015 0.14285714 0.14285714
## 2016 0.14285714 0.14285714
## 2017 0.14285714 0.14285714
## 2018 0.14285714 0.14285714
## 2019 0.14285714 0.14285714
## 2020 0.14285714 0.14285714
## 2021 0.14285714 0.14285714
## 2022 0.14285714 0.14285714
## 2023 0.14285714 0.14285714
## 2024 0.14285714 0.14285714
## 2025 0.14285714 0.14285714
## 2026 0.14285714 0.14285714
## 2027 0.14285714 0.14285714
## 2028 0.14285714 0.14285714
## 2029 0.14285714 0.14285714
## 2030 0.14285714 0.14285714
## 2031 0.14285714 0.14285714
## 2032 0.14285714 0.14285714
## 2033 0.14285714 0.14285714
## 2034 0.14285714 0.14285714
## 2035 0.14285714 0.14285714
## 2036 0.14285714 0.14285714
## 2037 0.14285714 0.14285714
## 2038 0.14285714 0.14285714
## 2039 0.14285714 0.14285714
## 2040 0.14285714 0.14285714
## 2041 0.14285714 0.14285714
## 2042 0.14285714 0.14285714
## 2043 0.14285714 0.14285714
## 2044 0.14285714 0.14285714
## 2045 0.14285714 0.14285714
## 2046 0.14285714 0.14285714
## 2047 0.14285714 0.14285714
## 2048 0.14285714 0.14285714
## 2049 0.14285714 0.14285714
## 2050 0.14285714 0.14285714
## 2051 0.14285714 0.14285714
## 2052 0.14285714 0.14285714
## 2053 0.14285714 0.14285714
## 2054 0.14285714 0.14285714
## 2055 0.14285714 0.14285714
## 2056 0.14285714 0.14285714
## 2057 0.14285714 0.14285714
## 2058 0.14285714 0.14285714
## 2059 0.14285714 0.14285714
## 2060 0.14285714 0.14285714
## 2061 0.14285714 0.14285714
## 2062 0.14285714 0.14285714
## 2063 0.14285714 0.14285714
## 2064 0.14285714 0.14285714
## 2065 0.14285714 0.14285714
## 2066 0.14285714 0.14285714
## 2067 0.14285714 0.14285714
## 2068 0.14285714 0.14285714
## 2069 0.14285714 0.14285714
## 2070 0.14285714 0.14285714
## 2071 0.14285714 0.14285714
## 2072 0.14285714 0.14285714
## 2073 0.14285714 0.14285714
## 2074 0.14285714 0.14285714
## 2075 0.14285714 0.14285714
## 2076 0.14285714 0.14285714
## 2077 0.14285714 0.14285714
## 2078 0.14285714 0.14285714
## 2079 0.14285714 0.14285714
## 2080 0.14285714 0.14285714
## 2081 0.14285714 0.14285714
## 2082 0.14285714 0.14285714
## 2083 0.14285714 0.14285714
## 2084 0.14285714 0.14285714
## 2085 0.14285714 0.14285714
## 2086 0.14285714 0.14285714
## 2087 0.14285714 0.14285714
## 2088 0.14285714 0.14285714
## 2089 0.14285714 0.14285714
## 2090 0.14285714 0.14285714
## 2091 0.14285714 0.14285714
## 2092 0.14285714 0.14285714
## 2093 0.14285714 0.14285714
## 2094 0.14285714 0.14285714
## 2095 0.14285714 0.14285714
## 2096 0.14285714 0.14285714
## 2097 0.14285714 0.14285714
## 2098 0.14285714 0.14285714
## 2099 0.14285714 0.14285714
## 2100 0.14285714 0.14285714
## 2101 0.14285714 0.14285714
## 2102 0.14285714 0.14285714
## 2103 0.14285714 0.14285714
## 2104 0.14285714 0.14285714
## 2105 0.14285714 0.14285714
## 2106 0.14285714 0.14285714
## 2107 0.14285714 0.14285714
## 2108 0.14285714 0.14285714
## 2109 0.14285714 0.14285714
## 2110 0.14285714 0.14285714
## 2111 0.14285714 0.14285714
## 2112 0.14285714 0.14285714
## 2113 0.16666667 0.33333333
## 2114 0.16666667 0.33333333
## 2115 0.16666667 0.33333333
## 2116 0.16666667 0.33333333
## 2117 0.16666667 0.33333333
## 2118 0.16666667 0.33333333
## 2119 0.16666667 0.33333333
## 2120 0.16666667 0.33333333
## 2121 0.16666667 0.33333333
## 2122 0.16666667 0.33333333
## 2123 0.16666667 0.33333333
## 2124 0.16666667 0.33333333
## 2125 0.16666667 0.33333333
## 2126 0.16666667 0.33333333
## 2127 0.16666667 0.33333333
## 2128 0.16666667 0.33333333
## 2129 0.16666667 0.33333333
## 2130 0.16666667 0.33333333
## 2131 0.16666667 0.33333333
## 2132 0.16666667 0.33333333
## 2133 0.16666667 0.33333333
## 2134 0.16666667 0.33333333
## 2135 0.16666667 0.33333333
## 2136 0.16666667 0.33333333
## 2137 0.16666667 0.33333333
## 2138 0.16666667 0.33333333
## 2139 0.16666667 0.33333333
## 2140 0.16666667 0.33333333
## 2141 0.16666667 0.33333333
## 2142 0.16666667 0.33333333
## 2143 0.16666667 0.33333333
## 2144 0.16666667 0.33333333
## 2145 0.16666667 0.33333333
## 2146 0.16666667 0.33333333
## 2147 0.16666667 0.33333333
## 2148 0.16666667 0.33333333
## 2149 0.16666667 0.33333333
## 2150 0.16666667 0.33333333
## 2151 0.16666667 0.33333333
## 2152 0.16666667 0.33333333
## 2153 0.16666667 0.33333333
## 2154 0.16666667 0.33333333
## 2155 0.16666667 0.33333333
## 2156 0.16666667 0.33333333
## 2157 0.16666667 0.33333333
## 2158 0.16666667 0.33333333
## 2159 0.16666667 0.33333333
## 2160 0.16666667 0.33333333
## 2161 0.16666667 0.33333333
## 2162 0.16666667 0.33333333
## 2163 0.16666667 0.33333333
## 2164 0.16666667 0.33333333
## 2165 0.16666667 0.33333333
## 2166 0.16666667 0.33333333
## 2167 0.16666667 0.33333333
## 2168 0.16666667 0.33333333
## 2169 0.16666667 0.33333333
## 2170 0.16666667 0.33333333
## 2171 0.16666667 0.33333333
## 2172 0.16666667 0.33333333
## 2173 0.16666667 0.33333333
## 2174 0.16666667 0.33333333
## 2175 0.16666667 0.33333333
## 2176 0.16666667 0.33333333
## 2177 0.16666667 0.33333333
## 2178 0.16666667 0.33333333
## 2179 0.16666667 0.33333333
## 2180 0.16666667 0.33333333
## 2181 0.16666667 0.33333333
## 2182 0.16666667 0.33333333
## 2183 0.16666667 0.33333333
## 2184 0.16666667 0.33333333
## 2185 0.16666667 0.33333333
## 2186 0.16666667 0.33333333
## 2187 0.16666667 0.33333333
## 2188 0.16666667 0.33333333
## 2189 0.16666667 0.33333333
## 2190 0.16666667 0.33333333
## 2191 0.16666667 0.33333333
## 2192 0.16666667 0.33333333
## 2193 0.16666667 0.33333333
## 2194 0.16666667 0.33333333
## 2195 0.16666667 0.33333333
## 2196 0.16666667 0.33333333
## 2197 0.16666667 0.33333333
## 2198 0.16666667 0.33333333
## 2199 0.16666667 0.33333333
## 2200 0.16666667 0.33333333
## 2201 0.16666667 0.33333333
## 2202 0.16666667 0.33333333
## 2203 0.16666667 0.33333333
## 2204 0.16666667 0.33333333
## 2205 0.16666667 0.33333333
## 2206 0.16666667 0.33333333
## 2207 0.16666667 0.33333333
## 2208 0.16666667 0.33333333
## 2209 0.16666667 0.33333333
## 2210 0.16666667 0.33333333
## 2211 0.16666667 0.33333333
## 2212 0.16666667 0.33333333
## 2213 0.16666667 0.33333333
## 2214 0.16666667 0.33333333
## 2215 0.16666667 0.33333333
## 2216 0.16666667 0.33333333
## 2217 0.16666667 0.33333333
## 2218 0.16666667 0.33333333
## 2219 0.16666667 0.33333333
## 2220 0.16666667 0.33333333
## 2221 0.16666667 0.33333333
## 2222 0.16666667 0.33333333
## 2223 0.16666667 0.33333333
## 2224 0.16666667 0.33333333
## 2225 0.16666667 0.33333333
## 2226 0.16666667 0.33333333
## 2227 0.16666667 0.33333333
## 2228 0.16666667 0.33333333
## 2229 0.16666667 0.33333333
## 2230 0.16666667 0.33333333
## 2231 0.16666667 0.33333333
## 2232 0.16666667 0.33333333
## 2233 0.16666667 0.33333333
## 2234 0.16666667 0.33333333
## 2235 0.16666667 0.33333333
## 2236 0.16666667 0.33333333
## 2237 0.16666667 0.33333333
## 2238 0.16666667 0.33333333
## 2239 0.16666667 0.33333333
## 2240 0.16666667 0.33333333
## 2241 0.16666667 0.33333333
## 2242 0.16666667 0.33333333
## 2243 0.16666667 0.33333333
## 2244 0.16666667 0.33333333
## 2245 0.16666667 0.33333333
## 2246 0.16666667 0.33333333
## 2247 0.16666667 0.33333333
## 2248 0.16666667 0.33333333
## 2249 0.16666667 0.33333333
## 2250 0.16666667 0.33333333
## 2251 0.16666667 0.33333333
## 2252 0.16666667 0.33333333
## 2253 0.16666667 0.33333333
## 2254 0.16666667 0.33333333
## 2255 0.16666667 0.33333333
## 2256 0.16666667 0.33333333
## 2257 0.16666667 0.33333333
## 2258 0.16666667 0.33333333
## 2259 0.16666667 0.33333333
## 2260 0.16666667 0.33333333
## 2261 0.16666667 0.33333333
## 2262 0.16666667 0.33333333
## 2263 0.16666667 0.33333333
## 2264 0.16666667 0.33333333
## 2265 0.16666667 0.33333333
## 2266 0.16666667 0.33333333
## 2267 0.16666667 0.33333333
## 2268 0.16666667 0.33333333
## 2269 0.16666667 0.33333333
## 2270 0.16666667 0.33333333
## 2271 0.16666667 0.33333333
## 2272 0.16666667 0.33333333
## 2273 0.16666667 0.33333333
## 2274 0.16666667 0.33333333
## 2275 0.16666667 0.33333333
## 2276 0.16666667 0.33333333
## 2277 0.16666667 0.33333333
## 2278 0.16666667 0.33333333
## 2279 0.16666667 0.33333333
## 2280 0.16666667 0.33333333
## 2281 0.16666667 0.33333333
## 2282 0.16666667 0.33333333
## 2283 0.16666667 0.33333333
## 2284 0.16666667 0.33333333
## 2285 0.16666667 0.33333333
## 2286 0.16666667 0.33333333
## 2287 0.16666667 0.33333333
## 2288 0.16666667 0.33333333
## 2289 0.16666667 0.33333333
## 2290 0.16666667 0.33333333
## 2291 0.16666667 0.33333333
## 2292 0.16666667 0.33333333
## 2293 0.16666667 0.33333333
## 2294 0.16666667 0.33333333
## 2295 0.16666667 0.33333333
## 2296 0.16666667 0.33333333
## 2297 0.16666667 0.33333333
## 2298 0.16666667 0.33333333
## 2299 0.16666667 0.33333333
## 2300 0.16666667 0.33333333
## 2301 0.16666667 0.33333333
## 2302 0.16666667 0.33333333
## 2303 0.16666667 0.33333333
## 2304 0.16666667 0.33333333
## 2305 0.16666667 0.33333333
## 2306 0.16666667 0.33333333
## 2307 0.16666667 0.33333333
## 2308 0.16666667 0.33333333
## 2309 0.16666667 0.33333333
## 2310 0.16666667 0.33333333
## 2311 0.16666667 0.33333333
## 2312 0.16666667 0.33333333
## 2313 0.16666667 0.33333333
## 2314 0.16666667 0.33333333
## 2315 0.16666667 0.33333333
## 2316 0.16666667 0.33333333
## 2317 0.16666667 0.33333333
## 2318 0.16666667 0.33333333
## 2319 0.16666667 0.33333333
## 2320 0.16666667 0.33333333
## 2321 0.16666667 0.33333333
## 2322 0.16666667 0.33333333
## 2323 0.16666667 0.33333333
## 2324 0.16666667 0.33333333
## 2325 0.16666667 0.33333333
## 2326 0.16666667 0.33333333
## 2327 0.16666667 0.33333333
## 2328 0.16666667 0.33333333
## 2329 0.16666667 0.33333333
## 2330 0.16666667 0.33333333
## 2331 0.16666667 0.33333333
## 2332 0.16666667 0.33333333
## 2333 0.16666667 0.33333333
## 2334 0.16666667 0.33333333
## 2335 0.16666667 0.33333333
## 2336 0.16666667 0.33333333
## 2337 0.16666667 0.33333333
## 2338 0.16666667 0.33333333
## 2339 0.16666667 0.33333333
## 2340 0.16666667 0.33333333
## 2341 0.16666667 0.33333333
## 2342 0.16666667 0.33333333
## 2343 0.16666667 0.33333333
## 2344 0.16666667 0.33333333
## 2345 0.16666667 0.33333333
## 2346 0.16666667 0.33333333
## 2347 0.16666667 0.33333333
## 2348 0.16666667 0.33333333
## 2349 0.16666667 0.33333333
## 2350 0.16666667 0.33333333
## 2351 0.16666667 0.33333333
## 2352 0.16666667 0.33333333
## 2353 0.16666667 0.33333333
## 2354 0.16666667 0.33333333
## 2355 0.16666667 0.33333333
## 2356 0.16666667 0.33333333
## 2357 0.16666667 0.33333333
## 2358 0.16666667 0.33333333
## 2359 0.16666667 0.33333333
## 2360 0.16666667 0.33333333
## 2361 0.16666667 0.33333333
## 2362 0.16666667 0.33333333
## 2363 0.16666667 0.33333333
## 2364 0.16666667 0.33333333
## 2365 0.16666667 0.33333333
## 2366 0.16666667 0.33333333
## 2367 0.16666667 0.33333333
## 2368 0.16666667 0.33333333
## 2369 0.16666667 0.33333333
## 2370 0.16666667 0.33333333
## 2371 0.16666667 0.33333333
## 2372 0.16666667 0.33333333
## 2373 0.16666667 0.33333333
## 2374 0.16666667 0.33333333
## 2375 0.16666667 0.33333333
## 2376 0.16666667 0.33333333
## 2377 0.16666667 0.33333333
## 2378 0.16666667 0.33333333
## 2379 0.16666667 0.33333333
## 2380 0.16666667 0.33333333
## 2381 0.16666667 0.33333333
## 2382 0.16666667 0.33333333
## 2383 0.16666667 0.33333333
## 2384 0.16666667 0.33333333
## 2385 0.16666667 0.33333333
## 2386 0.16666667 0.33333333
## 2387 0.16666667 0.33333333
## 2388 0.16666667 0.33333333
## 2389 0.16666667 0.33333333
## 2390 0.16666667 0.33333333
## 2391 0.16666667 0.33333333
## 2392 0.16666667 0.33333333
## 2393 0.16666667 0.33333333
## 2394 0.16666667 0.33333333
## 2395 0.16666667 0.33333333
## 2396 0.16666667 0.33333333
## 2397 0.16666667 0.33333333
## 2398 0.16666667 0.33333333
## 2399 0.16666667 0.33333333
## 2400 0.16666667 0.33333333
## 2401 0.16666667 0.33333333
## 2402 0.16666667 0.33333333
## 2403 0.16666667 0.33333333
## 2404 0.16666667 0.33333333
## 2405 0.16666667 0.33333333
## 2406 0.16666667 0.33333333
## 2407 0.16666667 0.33333333
## 2408 0.16666667 0.33333333
## 2409 0.16666667 0.33333333
## 2410 0.16666667 0.33333333
## 2411 0.16666667 0.33333333
## 2412 0.16666667 0.33333333
## 2413 0.16666667 0.33333333
## 2414 0.16666667 0.33333333
## 2415 0.16666667 0.33333333
## 2416 0.16666667 0.33333333
## 2417 0.16666667 0.33333333
## 2418 0.16666667 0.33333333
## 2419 0.16666667 0.33333333
## 2420 0.16666667 0.33333333
## 2421 0.16666667 0.33333333
## 2422 0.16666667 0.33333333
## 2423 0.16666667 0.33333333
## 2424 0.16666667 0.33333333
## 2425 0.16666667 0.33333333
## 2426 0.16666667 0.33333333
## 2427 0.16666667 0.33333333
## 2428 0.16666667 0.33333333
## 2429 0.16666667 0.33333333
## 2430 0.16666667 0.33333333
## 2431 0.16666667 0.33333333
## 2432 0.16666667 0.33333333
## 2433 0.16666667 0.33333333
## 2434 0.16666667 0.33333333
## 2435 0.16666667 0.33333333
## 2436 0.16666667 0.33333333
## 2437 0.16666667 0.33333333
## 2438 0.16666667 0.33333333
## 2439 0.16666667 0.33333333
## 2440 0.16666667 0.33333333
## 2441 0.16666667 0.33333333
## 2442 0.16666667 0.33333333
## 2443 0.16666667 0.33333333
## 2444 0.16666667 0.33333333
## 2445 0.16666667 0.33333333
## 2446 0.16666667 0.33333333
## 2447 0.16666667 0.33333333
## 2448 0.16666667 0.33333333
## 2449 0.16666667 0.33333333
## 2450 0.16666667 0.33333333
## 2451 0.16666667 0.33333333
## 2452 0.16666667 0.33333333
## 2453 0.16666667 0.33333333
## 2454 0.16666667 0.33333333
## 2455 0.16666667 0.33333333
## 2456 0.16666667 0.33333333
## 2457 0.16666667 0.33333333
## 2458 0.16666667 0.33333333
## 2459 0.16666667 0.33333333
## 2460 0.16666667 0.33333333
## 2461 0.16666667 0.33333333
## 2462 0.16666667 0.33333333
## 2463 0.16666667 0.33333333
## 2464 0.16666667 0.33333333
## 2465 0.16666667 0.33333333
## 2466 0.16666667 0.33333333
## 2467 0.16666667 0.33333333
## 2468 0.16666667 0.33333333
## 2469 0.16666667 0.33333333
## 2470 0.16666667 0.33333333
## 2471 0.16666667 0.33333333
## 2472 0.16666667 0.33333333
## 2473 0.16666667 0.33333333
## 2474 0.16666667 0.33333333
## 2475 0.16666667 0.33333333
## 2476 0.16666667 0.33333333
## 2477 0.16666667 0.33333333
## 2478 0.16666667 0.33333333
## 2479 0.16666667 0.33333333
## 2480 0.16666667 0.33333333
## 2481 0.16666667 0.33333333
## 2482 0.16666667 0.33333333
## 2483 0.16666667 0.33333333
## 2484 0.16666667 0.33333333
## 2485 0.16666667 0.33333333
## 2486 0.16666667 0.33333333
## 2487 0.16666667 0.33333333
## 2488 0.16666667 0.33333333
## 2489 0.16666667 0.33333333
## 2490 0.16666667 0.33333333
## 2491 0.16666667 0.33333333
## 2492 0.16666667 0.33333333
## 2493 0.16666667 0.33333333
## 2494 0.16666667 0.33333333
## 2495 0.16666667 0.33333333
## 2496 0.16666667 0.33333333
## 2497 0.07692308 0.07692308
## 2498 0.07692308 0.07692308
## 2499 0.07692308 0.07692308
## 2500 0.07692308 0.07692308
## 2501 0.07692308 0.07692308
## 2502 0.07692308 0.07692308
## 2503 0.07692308 0.07692308
## 2504 0.07692308 0.07692308
## 2505 0.07692308 0.07692308
## 2506 0.07692308 0.07692308
## 2507 0.07692308 0.07692308
## 2508 0.07692308 0.07692308
## 2509 0.07692308 0.07692308
## 2510 0.07692308 0.07692308
## 2511 0.07692308 0.07692308
## 2512 0.07692308 0.07692308
## 2513 0.07692308 0.07692308
## 2514 0.07692308 0.07692308
## 2515 0.07692308 0.07692308
## 2516 0.07692308 0.07692308
## 2517 0.07692308 0.07692308
## 2518 0.07692308 0.07692308
## 2519 0.07692308 0.07692308
## 2520 0.07692308 0.07692308
## 2521 0.07692308 0.07692308
## 2522 0.07692308 0.07692308
## 2523 0.07692308 0.07692308
## 2524 0.07692308 0.07692308
## 2525 0.07692308 0.07692308
## 2526 0.07692308 0.07692308
## 2527 0.07692308 0.07692308
## 2528 0.07692308 0.07692308
## 2529 0.07692308 0.07692308
## 2530 0.07692308 0.07692308
## 2531 0.07692308 0.07692308
## 2532 0.07692308 0.07692308
## 2533 0.07692308 0.07692308
## 2534 0.07692308 0.07692308
## 2535 0.07692308 0.07692308
## 2536 0.07692308 0.07692308
## 2537 0.07692308 0.07692308
## 2538 0.07692308 0.07692308
## 2539 0.07692308 0.07692308
## 2540 0.07692308 0.07692308
## 2541 0.07692308 0.07692308
## 2542 0.07692308 0.07692308
## 2543 0.07692308 0.07692308
## 2544 0.07692308 0.07692308
## 2545 0.07692308 0.07692308
## 2546 0.07692308 0.07692308
## 2547 0.07692308 0.07692308
## 2548 0.07692308 0.07692308
## 2549 0.07692308 0.07692308
## 2550 0.07692308 0.07692308
## 2551 0.07692308 0.07692308
## 2552 0.07692308 0.07692308
## 2553 0.07692308 0.07692308
## 2554 0.07692308 0.07692308
## 2555 0.07692308 0.07692308
## 2556 0.07692308 0.07692308
## 2557 0.07692308 0.07692308
## 2558 0.07692308 0.07692308
## 2559 0.07692308 0.07692308
## 2560 0.07692308 0.07692308
## 2561 0.07692308 0.07692308
## 2562 0.07692308 0.07692308
## 2563 0.07692308 0.07692308
## 2564 0.07692308 0.07692308
## 2565 0.07692308 0.07692308
## 2566 0.07692308 0.07692308
## 2567 0.07692308 0.07692308
## 2568 0.07692308 0.07692308
## 2569 0.07692308 0.07692308
## 2570 0.07692308 0.07692308
## 2571 0.07692308 0.07692308
## 2572 0.07692308 0.07692308
## 2573 0.07692308 0.07692308
## 2574 0.07692308 0.07692308
## 2575 0.07692308 0.07692308
## 2576 0.07692308 0.07692308
## 2577 0.07692308 0.07692308
## 2578 0.07692308 0.07692308
## 2579 0.07692308 0.07692308
## 2580 0.07692308 0.07692308
## 2581 0.07692308 0.07692308
## 2582 0.07692308 0.07692308
## 2583 0.07692308 0.07692308
## 2584 0.07692308 0.07692308
## 2585 0.07692308 0.07692308
## 2586 0.07692308 0.07692308
## 2587 0.07692308 0.07692308
## 2588 0.07692308 0.07692308
## 2589 0.07692308 0.07692308
## 2590 0.07692308 0.07692308
## 2591 0.07692308 0.07692308
## 2592 0.07692308 0.07692308
## 2593 0.07692308 0.07692308
## 2594 0.07692308 0.07692308
## 2595 0.07692308 0.07692308
## 2596 0.07692308 0.07692308
## 2597 0.07692308 0.07692308
## 2598 0.07692308 0.07692308
## 2599 0.07692308 0.07692308
## 2600 0.07692308 0.07692308
## 2601 0.07692308 0.07692308
## 2602 0.07692308 0.07692308
## 2603 0.07692308 0.07692308
## 2604 0.07692308 0.07692308
## 2605 0.07692308 0.07692308
## 2606 0.07692308 0.07692308
## 2607 0.07692308 0.07692308
## 2608 0.07692308 0.07692308
## 2609 0.07692308 0.07692308
## 2610 0.07692308 0.07692308
## 2611 0.07692308 0.07692308
## 2612 0.07692308 0.07692308
## 2613 0.07692308 0.07692308
## 2614 0.07692308 0.07692308
## 2615 0.07692308 0.07692308
## 2616 0.07692308 0.07692308
## 2617 0.07692308 0.07692308
## 2618 0.07692308 0.07692308
## 2619 0.07692308 0.07692308
## 2620 0.07692308 0.07692308
## 2621 0.07692308 0.07692308
## 2622 0.07692308 0.07692308
## 2623 0.07692308 0.07692308
## 2624 0.07692308 0.07692308
## 2625 0.07692308 0.07692308
## 2626 0.07692308 0.07692308
## 2627 0.07692308 0.07692308
## 2628 0.07692308 0.07692308
## 2629 0.07692308 0.07692308
## 2630 0.07692308 0.07692308
## 2631 0.07692308 0.07692308
## baseline_metaecosystem_richness set ID_first_patch ID_second_patch
## 1 9 1 1 11
## 2 9 2 1 11
## 3 9 3 1 11
## 4 9 4 1 11
## 5 9 7 1 11
## 6 9 8 1 11
## 7 9 9 1 11
## 8 9 10 1 11
## 9 9 11 1 11
## 10 9 12 1 11
## 11 9 13 1 11
## 12 9 14 1 11
## 13 9 27 1 11
## 14 9 28 1 11
## 15 9 29 1 11
## 16 9 30 1 11
## 17 9 31 1 11
## 18 9 32 1 11
## 19 9 33 1 11
## 20 9 34 1 11
## 21 9 37 1 11
## 22 9 38 1 11
## 23 9 39 1 11
## 24 9 40 1 11
## 25 9 1 1 11
## 26 9 2 1 11
## 27 9 3 1 11
## 28 9 4 1 11
## 29 9 7 1 11
## 30 9 8 1 11
## 31 9 9 1 11
## 32 9 10 1 11
## 33 9 11 1 11
## 34 9 12 1 11
## 35 9 13 1 11
## 36 9 14 1 11
## 37 9 27 1 11
## 38 9 28 1 11
## 39 9 29 1 11
## 40 9 30 1 11
## 41 9 31 1 11
## 42 9 32 1 11
## 43 9 33 1 11
## 44 9 34 1 11
## 45 9 37 1 11
## 46 9 38 1 11
## 47 9 39 1 11
## 48 9 40 1 11
## 49 9 1 1 11
## 50 9 2 1 11
## 51 9 3 1 11
## 52 9 4 1 11
## 53 9 7 1 11
## 54 9 8 1 11
## 55 9 9 1 11
## 56 9 10 1 11
## 57 9 11 1 11
## 58 9 12 1 11
## 59 9 13 1 11
## 60 9 14 1 11
## 61 9 27 1 11
## 62 9 28 1 11
## 63 9 29 1 11
## 64 9 30 1 11
## 65 9 31 1 11
## 66 9 32 1 11
## 67 9 33 1 11
## 68 9 34 1 11
## 69 9 37 1 11
## 70 9 38 1 11
## 71 9 39 1 11
## 72 9 40 1 11
## 73 9 1 1 11
## 74 9 2 1 11
## 75 9 3 1 11
## 76 9 4 1 11
## 77 9 7 1 11
## 78 9 8 1 11
## 79 9 9 1 11
## 80 9 10 1 11
## 81 9 11 1 11
## 82 9 12 1 11
## 83 9 13 1 11
## 84 9 14 1 11
## 85 9 27 1 11
## 86 9 28 1 11
## 87 9 29 1 11
## 88 9 30 1 11
## 89 9 31 1 11
## 90 9 32 1 11
## 91 9 33 1 11
## 92 9 34 1 11
## 93 9 37 1 11
## 94 9 38 1 11
## 95 9 39 1 11
## 96 9 40 1 11
## 97 9 1 1 11
## 98 9 2 1 11
## 99 9 3 1 11
## 100 9 4 1 11
## 101 9 7 1 11
## 102 9 8 1 11
## 103 9 9 1 11
## 104 9 10 1 11
## 105 9 11 1 11
## 106 9 12 1 11
## 107 9 13 1 11
## 108 9 14 1 11
## 109 9 27 1 11
## 110 9 28 1 11
## 111 9 29 1 11
## 112 9 30 1 11
## 113 9 31 1 11
## 114 9 32 1 11
## 115 9 33 1 11
## 116 9 34 1 11
## 117 9 37 1 11
## 118 9 38 1 11
## 119 9 39 1 11
## 120 9 40 1 11
## 121 9 1 1 11
## 122 9 2 1 11
## 123 9 3 1 11
## 124 9 4 1 11
## 125 9 7 1 11
## 126 9 8 1 11
## 127 9 9 1 11
## 128 9 10 1 11
## 129 9 11 1 11
## 130 9 12 1 11
## 131 9 13 1 11
## 132 9 14 1 11
## 133 9 27 1 11
## 134 9 28 1 11
## 135 9 29 1 11
## 136 9 30 1 11
## 137 9 31 1 11
## 138 9 32 1 11
## 139 9 33 1 11
## 140 9 34 1 11
## 141 9 37 1 11
## 142 9 38 1 11
## 143 9 39 1 11
## 144 9 40 1 11
## 145 9 1 1 11
## 146 9 2 1 11
## 147 9 3 1 11
## 148 9 4 1 11
## 149 9 7 1 11
## 150 9 8 1 11
## 151 9 9 1 11
## 152 9 10 1 11
## 153 9 11 1 11
## 154 9 12 1 11
## 155 9 13 1 11
## 156 9 14 1 11
## 157 9 27 1 11
## 158 9 28 1 11
## 159 9 29 1 11
## 160 9 30 1 11
## 161 9 31 1 11
## 162 9 32 1 11
## 163 9 33 1 11
## 164 9 34 1 11
## 165 9 37 1 11
## 166 9 38 1 11
## 167 9 39 1 11
## 168 9 40 1 11
## 169 9 1 1 11
## 170 9 2 1 11
## 171 9 3 1 11
## 172 9 4 1 11
## 173 9 7 1 11
## 174 9 8 1 11
## 175 9 9 1 11
## 176 9 10 1 11
## 177 9 11 1 11
## 178 9 12 1 11
## 179 9 13 1 11
## 180 9 14 1 11
## 181 9 27 1 11
## 182 9 28 1 11
## 183 9 29 1 11
## 184 9 30 1 11
## 185 9 31 1 11
## 186 9 32 1 11
## 187 9 33 1 11
## 188 9 34 1 11
## 189 9 37 1 11
## 190 9 38 1 11
## 191 9 39 1 11
## 192 9 40 1 11
## 193 9 81 1 12
## 194 9 82 1 12
## 195 9 83 1 12
## 196 9 84 1 12
## 197 9 87 1 12
## 198 9 88 1 12
## 199 9 89 1 12
## 200 9 90 1 12
## 201 9 91 1 12
## 202 9 92 1 12
## 203 9 93 1 12
## 204 9 94 1 12
## 205 9 107 1 12
## 206 9 108 1 12
## 207 9 109 1 12
## 208 9 110 1 12
## 209 9 111 1 12
## 210 9 112 1 12
## 211 9 113 1 12
## 212 9 114 1 12
## 213 9 117 1 12
## 214 9 118 1 12
## 215 9 119 1 12
## 216 9 120 1 12
## 217 9 81 1 12
## 218 9 82 1 12
## 219 9 83 1 12
## 220 9 84 1 12
## 221 9 87 1 12
## 222 9 88 1 12
## 223 9 89 1 12
## 224 9 90 1 12
## 225 9 91 1 12
## 226 9 92 1 12
## 227 9 93 1 12
## 228 9 94 1 12
## 229 9 107 1 12
## 230 9 108 1 12
## 231 9 109 1 12
## 232 9 110 1 12
## 233 9 111 1 12
## 234 9 112 1 12
## 235 9 113 1 12
## 236 9 114 1 12
## 237 9 117 1 12
## 238 9 118 1 12
## 239 9 119 1 12
## 240 9 120 1 12
## 241 9 81 1 12
## 242 9 82 1 12
## 243 9 83 1 12
## 244 9 84 1 12
## 245 9 87 1 12
## 246 9 88 1 12
## 247 9 89 1 12
## 248 9 90 1 12
## 249 9 91 1 12
## 250 9 92 1 12
## 251 9 93 1 12
## 252 9 94 1 12
## 253 9 107 1 12
## 254 9 108 1 12
## 255 9 109 1 12
## 256 9 110 1 12
## 257 9 111 1 12
## 258 9 112 1 12
## 259 9 113 1 12
## 260 9 114 1 12
## 261 9 117 1 12
## 262 9 118 1 12
## 263 9 119 1 12
## 264 9 120 1 12
## 265 9 81 1 12
## 266 9 82 1 12
## 267 9 83 1 12
## 268 9 84 1 12
## 269 9 87 1 12
## 270 9 88 1 12
## 271 9 89 1 12
## 272 9 90 1 12
## 273 9 91 1 12
## 274 9 92 1 12
## 275 9 93 1 12
## 276 9 94 1 12
## 277 9 107 1 12
## 278 9 108 1 12
## 279 9 109 1 12
## 280 9 110 1 12
## 281 9 111 1 12
## 282 9 112 1 12
## 283 9 113 1 12
## 284 9 114 1 12
## 285 9 117 1 12
## 286 9 118 1 12
## 287 9 119 1 12
## 288 9 120 1 12
## 289 9 81 1 12
## 290 9 82 1 12
## 291 9 83 1 12
## 292 9 84 1 12
## 293 9 87 1 12
## 294 9 88 1 12
## 295 9 89 1 12
## 296 9 90 1 12
## 297 9 91 1 12
## 298 9 92 1 12
## 299 9 93 1 12
## 300 9 94 1 12
## 301 9 107 1 12
## 302 9 108 1 12
## 303 9 109 1 12
## 304 9 110 1 12
## 305 9 111 1 12
## 306 9 112 1 12
## 307 9 113 1 12
## 308 9 114 1 12
## 309 9 117 1 12
## 310 9 118 1 12
## 311 9 119 1 12
## 312 9 120 1 12
## 313 9 81 1 12
## 314 9 82 1 12
## 315 9 83 1 12
## 316 9 84 1 12
## 317 9 87 1 12
## 318 9 88 1 12
## 319 9 89 1 12
## 320 9 90 1 12
## 321 9 91 1 12
## 322 9 92 1 12
## 323 9 93 1 12
## 324 9 94 1 12
## 325 9 107 1 12
## 326 9 108 1 12
## 327 9 109 1 12
## 328 9 110 1 12
## 329 9 111 1 12
## 330 9 112 1 12
## 331 9 113 1 12
## 332 9 114 1 12
## 333 9 117 1 12
## 334 9 118 1 12
## 335 9 119 1 12
## 336 9 120 1 12
## 337 9 81 1 12
## 338 9 82 1 12
## 339 9 83 1 12
## 340 9 84 1 12
## 341 9 87 1 12
## 342 9 88 1 12
## 343 9 89 1 12
## 344 9 90 1 12
## 345 9 91 1 12
## 346 9 92 1 12
## 347 9 93 1 12
## 348 9 94 1 12
## 349 9 107 1 12
## 350 9 108 1 12
## 351 9 109 1 12
## 352 9 110 1 12
## 353 9 111 1 12
## 354 9 112 1 12
## 355 9 113 1 12
## 356 9 114 1 12
## 357 9 117 1 12
## 358 9 118 1 12
## 359 9 119 1 12
## 360 9 120 1 12
## 361 9 81 1 12
## 362 9 82 1 12
## 363 9 83 1 12
## 364 9 84 1 12
## 365 9 87 1 12
## 366 9 88 1 12
## 367 9 89 1 12
## 368 9 90 1 12
## 369 9 91 1 12
## 370 9 92 1 12
## 371 9 93 1 12
## 372 9 94 1 12
## 373 9 107 1 12
## 374 9 108 1 12
## 375 9 109 1 12
## 376 9 110 1 12
## 377 9 111 1 12
## 378 9 112 1 12
## 379 9 113 1 12
## 380 9 114 1 12
## 381 9 117 1 12
## 382 9 118 1 12
## 383 9 119 1 12
## 384 9 120 1 12
## 385 10 41 1 13
## 386 10 42 1 13
## 387 10 43 1 13
## 388 10 44 1 13
## 389 10 47 1 13
## 390 10 48 1 13
## 391 10 49 1 13
## 392 10 50 1 13
## 393 10 51 1 13
## 394 10 52 1 13
## 395 10 53 1 13
## 396 10 54 1 13
## 397 10 67 1 13
## 398 10 68 1 13
## 399 10 69 1 13
## 400 10 70 1 13
## 401 10 71 1 13
## 402 10 72 1 13
## 403 10 73 1 13
## 404 10 74 1 13
## 405 10 77 1 13
## 406 10 78 1 13
## 407 10 79 1 13
## 408 10 80 1 13
## 409 10 41 1 13
## 410 10 42 1 13
## 411 10 43 1 13
## 412 10 44 1 13
## 413 10 47 1 13
## 414 10 48 1 13
## 415 10 49 1 13
## 416 10 50 1 13
## 417 10 51 1 13
## 418 10 52 1 13
## 419 10 53 1 13
## 420 10 54 1 13
## 421 10 67 1 13
## 422 10 68 1 13
## 423 10 69 1 13
## 424 10 70 1 13
## 425 10 71 1 13
## 426 10 72 1 13
## 427 10 73 1 13
## 428 10 74 1 13
## 429 10 77 1 13
## 430 10 78 1 13
## 431 10 79 1 13
## 432 10 80 1 13
## 433 10 41 1 13
## 434 10 42 1 13
## 435 10 43 1 13
## 436 10 44 1 13
## 437 10 47 1 13
## 438 10 48 1 13
## 439 10 49 1 13
## 440 10 50 1 13
## 441 10 51 1 13
## 442 10 52 1 13
## 443 10 53 1 13
## 444 10 54 1 13
## 445 10 67 1 13
## 446 10 68 1 13
## 447 10 69 1 13
## 448 10 70 1 13
## 449 10 71 1 13
## 450 10 72 1 13
## 451 10 73 1 13
## 452 10 74 1 13
## 453 10 77 1 13
## 454 10 78 1 13
## 455 10 79 1 13
## 456 10 80 1 13
## 457 10 41 1 13
## 458 10 42 1 13
## 459 10 43 1 13
## 460 10 44 1 13
## 461 10 47 1 13
## 462 10 48 1 13
## 463 10 49 1 13
## 464 10 50 1 13
## 465 10 51 1 13
## 466 10 52 1 13
## 467 10 53 1 13
## 468 10 54 1 13
## 469 10 67 1 13
## 470 10 68 1 13
## 471 10 69 1 13
## 472 10 70 1 13
## 473 10 71 1 13
## 474 10 72 1 13
## 475 10 73 1 13
## 476 10 74 1 13
## 477 10 77 1 13
## 478 10 78 1 13
## 479 10 79 1 13
## 480 10 80 1 13
## 481 10 41 1 13
## 482 10 42 1 13
## 483 10 43 1 13
## 484 10 44 1 13
## 485 10 47 1 13
## 486 10 48 1 13
## 487 10 49 1 13
## 488 10 50 1 13
## 489 10 51 1 13
## 490 10 52 1 13
## 491 10 53 1 13
## 492 10 54 1 13
## 493 10 67 1 13
## 494 10 68 1 13
## 495 10 69 1 13
## 496 10 70 1 13
## 497 10 71 1 13
## 498 10 72 1 13
## 499 10 73 1 13
## 500 10 74 1 13
## 501 10 77 1 13
## 502 10 78 1 13
## 503 10 79 1 13
## 504 10 80 1 13
## 505 10 41 1 13
## 506 10 42 1 13
## 507 10 43 1 13
## 508 10 44 1 13
## 509 10 47 1 13
## 510 10 48 1 13
## 511 10 49 1 13
## 512 10 50 1 13
## 513 10 51 1 13
## 514 10 52 1 13
## 515 10 53 1 13
## 516 10 54 1 13
## 517 10 67 1 13
## 518 10 68 1 13
## 519 10 69 1 13
## 520 10 70 1 13
## 521 10 71 1 13
## 522 10 72 1 13
## 523 10 73 1 13
## 524 10 74 1 13
## 525 10 77 1 13
## 526 10 78 1 13
## 527 10 79 1 13
## 528 10 80 1 13
## 529 10 41 1 13
## 530 10 42 1 13
## 531 10 43 1 13
## 532 10 44 1 13
## 533 10 47 1 13
## 534 10 48 1 13
## 535 10 49 1 13
## 536 10 50 1 13
## 537 10 51 1 13
## 538 10 52 1 13
## 539 10 53 1 13
## 540 10 54 1 13
## 541 10 67 1 13
## 542 10 68 1 13
## 543 10 69 1 13
## 544 10 70 1 13
## 545 10 71 1 13
## 546 10 72 1 13
## 547 10 73 1 13
## 548 10 74 1 13
## 549 10 77 1 13
## 550 10 78 1 13
## 551 10 79 1 13
## 552 10 80 1 13
## 553 10 41 1 13
## 554 10 42 1 13
## 555 10 43 1 13
## 556 10 44 1 13
## 557 10 47 1 13
## 558 10 48 1 13
## 559 10 49 1 13
## 560 10 50 1 13
## 561 10 51 1 13
## 562 10 52 1 13
## 563 10 53 1 13
## 564 10 54 1 13
## 565 10 67 1 13
## 566 10 68 1 13
## 567 10 69 1 13
## 568 10 70 1 13
## 569 10 71 1 13
## 570 10 72 1 13
## 571 10 73 1 13
## 572 10 74 1 13
## 573 10 77 1 13
## 574 10 78 1 13
## 575 10 79 1 13
## 576 10 80 1 13
## 577 9 17 1 14
## 578 9 18 1 14
## 579 9 19 1 14
## 580 9 20 1 14
## 581 9 21 1 14
## 582 9 22 1 14
## 583 9 23 1 14
## 584 9 24 1 14
## 585 9 57 1 14
## 586 9 58 1 14
## 587 9 59 1 14
## 588 9 60 1 14
## 589 9 61 1 14
## 590 9 62 1 14
## 591 9 63 1 14
## 592 9 64 1 14
## 593 9 97 1 14
## 594 9 98 1 14
## 595 9 99 1 14
## 596 9 100 1 14
## 597 9 101 1 14
## 598 9 102 1 14
## 599 9 103 1 14
## 600 9 104 1 14
## 601 9 17 1 14
## 602 9 18 1 14
## 603 9 19 1 14
## 604 9 20 1 14
## 605 9 21 1 14
## 606 9 22 1 14
## 607 9 23 1 14
## 608 9 24 1 14
## 609 9 57 1 14
## 610 9 58 1 14
## 611 9 59 1 14
## 612 9 60 1 14
## 613 9 61 1 14
## 614 9 62 1 14
## 615 9 63 1 14
## 616 9 64 1 14
## 617 9 97 1 14
## 618 9 98 1 14
## 619 9 99 1 14
## 620 9 100 1 14
## 621 9 101 1 14
## 622 9 102 1 14
## 623 9 103 1 14
## 624 9 104 1 14
## 625 9 17 1 14
## 626 9 18 1 14
## 627 9 19 1 14
## 628 9 20 1 14
## 629 9 21 1 14
## 630 9 22 1 14
## 631 9 23 1 14
## 632 9 24 1 14
## 633 9 57 1 14
## 634 9 58 1 14
## 635 9 59 1 14
## 636 9 60 1 14
## 637 9 61 1 14
## 638 9 62 1 14
## 639 9 63 1 14
## 640 9 64 1 14
## 641 9 97 1 14
## 642 9 98 1 14
## 643 9 99 1 14
## 644 9 100 1 14
## 645 9 101 1 14
## 646 9 102 1 14
## 647 9 103 1 14
## 648 9 104 1 14
## 649 9 17 1 14
## 650 9 18 1 14
## 651 9 19 1 14
## 652 9 20 1 14
## 653 9 21 1 14
## 654 9 22 1 14
## 655 9 23 1 14
## 656 9 24 1 14
## 657 9 57 1 14
## 658 9 58 1 14
## 659 9 59 1 14
## 660 9 60 1 14
## 661 9 61 1 14
## 662 9 62 1 14
## 663 9 63 1 14
## 664 9 64 1 14
## 665 9 97 1 14
## 666 9 98 1 14
## 667 9 99 1 14
## 668 9 100 1 14
## 669 9 101 1 14
## 670 9 102 1 14
## 671 9 103 1 14
## 672 9 104 1 14
## 673 9 17 1 14
## 674 9 18 1 14
## 675 9 19 1 14
## 676 9 20 1 14
## 677 9 21 1 14
## 678 9 22 1 14
## 679 9 23 1 14
## 680 9 24 1 14
## 681 9 57 1 14
## 682 9 58 1 14
## 683 9 59 1 14
## 684 9 60 1 14
## 685 9 61 1 14
## 686 9 62 1 14
## 687 9 63 1 14
## 688 9 64 1 14
## 689 9 97 1 14
## 690 9 98 1 14
## 691 9 99 1 14
## 692 9 100 1 14
## 693 9 101 1 14
## 694 9 102 1 14
## 695 9 103 1 14
## 696 9 104 1 14
## 697 9 17 1 14
## 698 9 18 1 14
## 699 9 19 1 14
## 700 9 20 1 14
## 701 9 21 1 14
## 702 9 22 1 14
## 703 9 23 1 14
## 704 9 24 1 14
## 705 9 57 1 14
## 706 9 58 1 14
## 707 9 59 1 14
## 708 9 60 1 14
## 709 9 61 1 14
## 710 9 62 1 14
## 711 9 63 1 14
## 712 9 64 1 14
## 713 9 97 1 14
## 714 9 98 1 14
## 715 9 99 1 14
## 716 9 100 1 14
## 717 9 101 1 14
## 718 9 102 1 14
## 719 9 103 1 14
## 720 9 104 1 14
## 721 9 17 1 14
## 722 9 18 1 14
## 723 9 19 1 14
## 724 9 20 1 14
## 725 9 21 1 14
## 726 9 22 1 14
## 727 9 23 1 14
## 728 9 24 1 14
## 729 9 57 1 14
## 730 9 58 1 14
## 731 9 59 1 14
## 732 9 60 1 14
## 733 9 61 1 14
## 734 9 62 1 14
## 735 9 63 1 14
## 736 9 64 1 14
## 737 9 97 1 14
## 738 9 98 1 14
## 739 9 99 1 14
## 740 9 100 1 14
## 741 9 101 1 14
## 742 9 102 1 14
## 743 9 103 1 14
## 744 9 104 1 14
## 745 9 17 1 14
## 746 9 18 1 14
## 747 9 19 1 14
## 748 9 20 1 14
## 749 9 21 1 14
## 750 9 22 1 14
## 751 9 23 1 14
## 752 9 24 1 14
## 753 9 57 1 14
## 754 9 58 1 14
## 755 9 59 1 14
## 756 9 60 1 14
## 757 9 61 1 14
## 758 9 62 1 14
## 759 9 63 1 14
## 760 9 64 1 14
## 761 9 97 1 14
## 762 9 98 1 14
## 763 9 99 1 14
## 764 9 100 1 14
## 765 9 101 1 14
## 766 9 102 1 14
## 767 9 103 1 14
## 768 9 104 1 14
## 769 9 5 1 15
## 770 9 6 1 15
## 771 9 15 1 15
## 772 9 16 1 15
## 773 9 25 1 15
## 774 9 26 1 15
## 775 9 35 1 15
## 776 9 36 1 15
## 777 9 45 1 15
## 778 9 46 1 15
## 779 9 55 1 15
## 780 9 56 1 15
## 781 9 65 1 15
## 782 9 66 1 15
## 783 9 75 1 15
## 784 9 76 1 15
## 785 9 85 1 15
## 786 9 86 1 15
## 787 9 95 1 15
## 788 9 96 1 15
## 789 9 105 1 15
## 790 9 106 1 15
## 791 9 115 1 15
## 792 9 116 1 15
## 793 9 5 1 15
## 794 9 6 1 15
## 795 9 15 1 15
## 796 9 16 1 15
## 797 9 25 1 15
## 798 9 26 1 15
## 799 9 35 1 15
## 800 9 36 1 15
## 801 9 45 1 15
## 802 9 46 1 15
## 803 9 55 1 15
## 804 9 56 1 15
## 805 9 65 1 15
## 806 9 66 1 15
## 807 9 75 1 15
## 808 9 76 1 15
## 809 9 85 1 15
## 810 9 86 1 15
## 811 9 95 1 15
## 812 9 96 1 15
## 813 9 105 1 15
## 814 9 106 1 15
## 815 9 115 1 15
## 816 9 116 1 15
## 817 9 5 1 15
## 818 9 6 1 15
## 819 9 15 1 15
## 820 9 16 1 15
## 821 9 25 1 15
## 822 9 26 1 15
## 823 9 35 1 15
## 824 9 36 1 15
## 825 9 45 1 15
## 826 9 46 1 15
## 827 9 55 1 15
## 828 9 56 1 15
## 829 9 65 1 15
## 830 9 66 1 15
## 831 9 75 1 15
## 832 9 76 1 15
## 833 9 85 1 15
## 834 9 86 1 15
## 835 9 95 1 15
## 836 9 96 1 15
## 837 9 105 1 15
## 838 9 106 1 15
## 839 9 115 1 15
## 840 9 116 1 15
## 841 9 5 1 15
## 842 9 6 1 15
## 843 9 15 1 15
## 844 9 16 1 15
## 845 9 25 1 15
## 846 9 26 1 15
## 847 9 35 1 15
## 848 9 36 1 15
## 849 9 45 1 15
## 850 9 46 1 15
## 851 9 55 1 15
## 852 9 56 1 15
## 853 9 65 1 15
## 854 9 66 1 15
## 855 9 75 1 15
## 856 9 76 1 15
## 857 9 85 1 15
## 858 9 86 1 15
## 859 9 95 1 15
## 860 9 96 1 15
## 861 9 105 1 15
## 862 9 106 1 15
## 863 9 115 1 15
## 864 9 116 1 15
## 865 9 5 1 15
## 866 9 6 1 15
## 867 9 15 1 15
## 868 9 16 1 15
## 869 9 25 1 15
## 870 9 26 1 15
## 871 9 35 1 15
## 872 9 36 1 15
## 873 9 45 1 15
## 874 9 46 1 15
## 875 9 55 1 15
## 876 9 56 1 15
## 877 9 65 1 15
## 878 9 66 1 15
## 879 9 75 1 15
## 880 9 76 1 15
## 881 9 85 1 15
## 882 9 86 1 15
## 883 9 95 1 15
## 884 9 96 1 15
## 885 9 105 1 15
## 886 9 106 1 15
## 887 9 115 1 15
## 888 9 116 1 15
## 889 9 5 1 15
## 890 9 6 1 15
## 891 9 15 1 15
## 892 9 16 1 15
## 893 9 25 1 15
## 894 9 26 1 15
## 895 9 35 1 15
## 896 9 36 1 15
## 897 9 45 1 15
## 898 9 46 1 15
## 899 9 55 1 15
## 900 9 56 1 15
## 901 9 65 1 15
## 902 9 66 1 15
## 903 9 75 1 15
## 904 9 76 1 15
## 905 9 85 1 15
## 906 9 86 1 15
## 907 9 95 1 15
## 908 9 96 1 15
## 909 9 105 1 15
## 910 9 106 1 15
## 911 9 115 1 15
## 912 9 116 1 15
## 913 9 5 1 15
## 914 9 6 1 15
## 915 9 15 1 15
## 916 9 16 1 15
## 917 9 25 1 15
## 918 9 26 1 15
## 919 9 35 1 15
## 920 9 36 1 15
## 921 9 45 1 15
## 922 9 46 1 15
## 923 9 55 1 15
## 924 9 56 1 15
## 925 9 65 1 15
## 926 9 66 1 15
## 927 9 75 1 15
## 928 9 76 1 15
## 929 9 85 1 15
## 930 9 86 1 15
## 931 9 95 1 15
## 932 9 96 1 15
## 933 9 105 1 15
## 934 9 106 1 15
## 935 9 115 1 15
## 936 9 116 1 15
## 937 9 5 1 15
## 938 9 6 1 15
## 939 9 15 1 15
## 940 9 16 1 15
## 941 9 25 1 15
## 942 9 26 1 15
## 943 9 35 1 15
## 944 9 36 1 15
## 945 9 45 1 15
## 946 9 46 1 15
## 947 9 55 1 15
## 948 9 56 1 15
## 949 9 65 1 15
## 950 9 66 1 15
## 951 9 75 1 15
## 952 9 76 1 15
## 953 9 85 1 15
## 954 9 86 1 15
## 955 9 95 1 15
## 956 9 96 1 15
## 957 9 105 1 15
## 958 9 106 1 15
## 959 9 115 1 15
## 960 9 116 1 15
## 961 10 5 2 11
## 962 10 6 2 11
## 963 10 15 2 11
## 964 10 18 2 11
## 965 10 19 2 11
## 966 10 20 2 11
## 967 10 21 2 11
## 968 10 22 2 11
## 969 10 23 2 11
## 970 10 26 2 11
## 971 10 35 2 11
## 972 10 36 2 11
## 973 10 41 2 11
## 974 10 42 2 11
## 975 10 43 2 11
## 976 10 48 2 11
## 977 10 49 2 11
## 978 10 50 2 11
## 979 10 111 2 11
## 980 10 112 2 11
## 981 10 113 2 11
## 982 10 118 2 11
## 983 10 119 2 11
## 984 10 120 2 11
## 985 10 5 2 11
## 986 10 6 2 11
## 987 10 15 2 11
## 988 10 18 2 11
## 989 10 19 2 11
## 990 10 20 2 11
## 991 10 21 2 11
## 992 10 22 2 11
## 993 10 23 2 11
## 994 10 26 2 11
## 995 10 35 2 11
## 996 10 36 2 11
## 997 10 41 2 11
## 998 10 42 2 11
## 999 10 43 2 11
## 1000 10 48 2 11
## 1001 10 49 2 11
## 1002 10 50 2 11
## 1003 10 111 2 11
## 1004 10 112 2 11
## 1005 10 113 2 11
## 1006 10 118 2 11
## 1007 10 119 2 11
## 1008 10 120 2 11
## 1009 10 5 2 11
## 1010 10 6 2 11
## 1011 10 15 2 11
## 1012 10 18 2 11
## 1013 10 19 2 11
## 1014 10 20 2 11
## 1015 10 21 2 11
## 1016 10 22 2 11
## 1017 10 23 2 11
## 1018 10 26 2 11
## 1019 10 35 2 11
## 1020 10 36 2 11
## 1021 10 41 2 11
## 1022 10 42 2 11
## 1023 10 43 2 11
## 1024 10 48 2 11
## 1025 10 49 2 11
## 1026 10 50 2 11
## 1027 10 111 2 11
## 1028 10 112 2 11
## 1029 10 113 2 11
## 1030 10 118 2 11
## 1031 10 119 2 11
## 1032 10 120 2 11
## 1033 10 5 2 11
## 1034 10 6 2 11
## 1035 10 15 2 11
## 1036 10 18 2 11
## 1037 10 19 2 11
## 1038 10 20 2 11
## 1039 10 21 2 11
## 1040 10 22 2 11
## 1041 10 23 2 11
## 1042 10 26 2 11
## 1043 10 35 2 11
## 1044 10 36 2 11
## 1045 10 41 2 11
## 1046 10 42 2 11
## 1047 10 43 2 11
## 1048 10 48 2 11
## 1049 10 49 2 11
## 1050 10 50 2 11
## 1051 10 111 2 11
## 1052 10 112 2 11
## 1053 10 113 2 11
## 1054 10 118 2 11
## 1055 10 119 2 11
## 1056 10 120 2 11
## 1057 10 5 2 11
## 1058 10 6 2 11
## 1059 10 15 2 11
## 1060 10 18 2 11
## 1061 10 19 2 11
## 1062 10 20 2 11
## 1063 10 21 2 11
## 1064 10 22 2 11
## 1065 10 23 2 11
## 1066 10 26 2 11
## 1067 10 35 2 11
## 1068 10 36 2 11
## 1069 10 41 2 11
## 1070 10 42 2 11
## 1071 10 43 2 11
## 1072 10 48 2 11
## 1073 10 49 2 11
## 1074 10 50 2 11
## 1075 10 111 2 11
## 1076 10 112 2 11
## 1077 10 113 2 11
## 1078 10 118 2 11
## 1079 10 119 2 11
## 1080 10 120 2 11
## 1081 10 5 2 11
## 1082 10 6 2 11
## 1083 10 15 2 11
## 1084 10 18 2 11
## 1085 10 19 2 11
## 1086 10 20 2 11
## 1087 10 21 2 11
## 1088 10 22 2 11
## 1089 10 23 2 11
## 1090 10 26 2 11
## 1091 10 35 2 11
## 1092 10 36 2 11
## 1093 10 41 2 11
## 1094 10 42 2 11
## 1095 10 43 2 11
## 1096 10 48 2 11
## 1097 10 49 2 11
## 1098 10 50 2 11
## 1099 10 111 2 11
## 1100 10 112 2 11
## 1101 10 113 2 11
## 1102 10 118 2 11
## 1103 10 119 2 11
## 1104 10 120 2 11
## 1105 10 5 2 11
## 1106 10 6 2 11
## 1107 10 15 2 11
## 1108 10 18 2 11
## 1109 10 19 2 11
## 1110 10 20 2 11
## 1111 10 21 2 11
## 1112 10 22 2 11
## 1113 10 23 2 11
## 1114 10 26 2 11
## 1115 10 35 2 11
## 1116 10 36 2 11
## 1117 10 41 2 11
## 1118 10 42 2 11
## 1119 10 43 2 11
## 1120 10 48 2 11
## 1121 10 49 2 11
## 1122 10 50 2 11
## 1123 10 111 2 11
## 1124 10 112 2 11
## 1125 10 113 2 11
## 1126 10 118 2 11
## 1127 10 119 2 11
## 1128 10 120 2 11
## 1129 10 5 2 11
## 1130 10 6 2 11
## 1131 10 15 2 11
## 1132 10 18 2 11
## 1133 10 19 2 11
## 1134 10 20 2 11
## 1135 10 21 2 11
## 1136 10 22 2 11
## 1137 10 23 2 11
## 1138 10 26 2 11
## 1139 10 35 2 11
## 1140 10 36 2 11
## 1141 10 41 2 11
## 1142 10 42 2 11
## 1143 10 43 2 11
## 1144 10 48 2 11
## 1145 10 49 2 11
## 1146 10 50 2 11
## 1147 10 111 2 11
## 1148 10 112 2 11
## 1149 10 113 2 11
## 1150 10 118 2 11
## 1151 10 119 2 11
## 1152 10 120 2 11
## 1153 10 1 2 12
## 1154 10 2 2 12
## 1155 10 3 2 12
## 1156 10 8 2 12
## 1157 10 9 2 12
## 1158 10 10 2 12
## 1159 10 71 2 12
## 1160 10 72 2 12
## 1161 10 73 2 12
## 1162 10 78 2 12
## 1163 10 79 2 12
## 1164 10 80 2 12
## 1165 10 85 2 12
## 1166 10 86 2 12
## 1167 10 95 2 12
## 1168 10 98 2 12
## 1169 10 99 2 12
## 1170 10 100 2 12
## 1171 10 101 2 12
## 1172 10 102 2 12
## 1173 10 103 2 12
## 1174 10 106 2 12
## 1175 10 115 2 12
## 1176 10 116 2 12
## 1177 10 1 2 12
## 1178 10 2 2 12
## 1179 10 3 2 12
## 1180 10 8 2 12
## 1181 10 9 2 12
## 1182 10 10 2 12
## 1183 10 71 2 12
## 1184 10 72 2 12
## 1185 10 73 2 12
## 1186 10 78 2 12
## 1187 10 79 2 12
## 1188 10 80 2 12
## 1189 10 85 2 12
## 1190 10 86 2 12
## 1191 10 95 2 12
## 1192 10 98 2 12
## 1193 10 99 2 12
## 1194 10 100 2 12
## 1195 10 101 2 12
## 1196 10 102 2 12
## 1197 10 103 2 12
## 1198 10 106 2 12
## 1199 10 115 2 12
## 1200 10 116 2 12
## 1201 10 1 2 12
## 1202 10 2 2 12
## 1203 10 3 2 12
## 1204 10 8 2 12
## 1205 10 9 2 12
## 1206 10 10 2 12
## 1207 10 71 2 12
## 1208 10 72 2 12
## 1209 10 73 2 12
## 1210 10 78 2 12
## 1211 10 79 2 12
## 1212 10 80 2 12
## 1213 10 85 2 12
## 1214 10 86 2 12
## 1215 10 95 2 12
## 1216 10 98 2 12
## 1217 10 99 2 12
## 1218 10 100 2 12
## 1219 10 101 2 12
## 1220 10 102 2 12
## 1221 10 103 2 12
## 1222 10 106 2 12
## 1223 10 115 2 12
## 1224 10 116 2 12
## 1225 10 1 2 12
## 1226 10 2 2 12
## 1227 10 3 2 12
## 1228 10 8 2 12
## 1229 10 9 2 12
## 1230 10 10 2 12
## 1231 10 71 2 12
## 1232 10 72 2 12
## 1233 10 73 2 12
## 1234 10 78 2 12
## 1235 10 79 2 12
## 1236 10 80 2 12
## 1237 10 85 2 12
## 1238 10 86 2 12
## 1239 10 95 2 12
## 1240 10 98 2 12
## 1241 10 99 2 12
## 1242 10 100 2 12
## 1243 10 101 2 12
## 1244 10 102 2 12
## 1245 10 103 2 12
## 1246 10 106 2 12
## 1247 10 115 2 12
## 1248 10 116 2 12
## 1249 10 1 2 12
## 1250 10 2 2 12
## 1251 10 3 2 12
## 1252 10 8 2 12
## 1253 10 9 2 12
## 1254 10 10 2 12
## 1255 10 71 2 12
## 1256 10 72 2 12
## 1257 10 73 2 12
## 1258 10 78 2 12
## 1259 10 79 2 12
## 1260 10 80 2 12
## 1261 10 85 2 12
## 1262 10 86 2 12
## 1263 10 95 2 12
## 1264 10 98 2 12
## 1265 10 99 2 12
## 1266 10 100 2 12
## 1267 10 101 2 12
## 1268 10 102 2 12
## 1269 10 103 2 12
## 1270 10 106 2 12
## 1271 10 115 2 12
## 1272 10 116 2 12
## 1273 10 1 2 12
## 1274 10 2 2 12
## 1275 10 3 2 12
## 1276 10 8 2 12
## 1277 10 9 2 12
## 1278 10 10 2 12
## 1279 10 71 2 12
## 1280 10 72 2 12
## 1281 10 73 2 12
## 1282 10 78 2 12
## 1283 10 79 2 12
## 1284 10 80 2 12
## 1285 10 85 2 12
## 1286 10 86 2 12
## 1287 10 95 2 12
## 1288 10 98 2 12
## 1289 10 99 2 12
## 1290 10 100 2 12
## 1291 10 101 2 12
## 1292 10 102 2 12
## 1293 10 103 2 12
## 1294 10 106 2 12
## 1295 10 115 2 12
## 1296 10 116 2 12
## 1297 10 1 2 12
## 1298 10 2 2 12
## 1299 10 3 2 12
## 1300 10 8 2 12
## 1301 10 9 2 12
## 1302 10 10 2 12
## 1303 10 71 2 12
## 1304 10 72 2 12
## 1305 10 73 2 12
## 1306 10 78 2 12
## 1307 10 79 2 12
## 1308 10 80 2 12
## 1309 10 85 2 12
## 1310 10 86 2 12
## 1311 10 95 2 12
## 1312 10 98 2 12
## 1313 10 99 2 12
## 1314 10 100 2 12
## 1315 10 101 2 12
## 1316 10 102 2 12
## 1317 10 103 2 12
## 1318 10 106 2 12
## 1319 10 115 2 12
## 1320 10 116 2 12
## 1321 10 1 2 12
## 1322 10 2 2 12
## 1323 10 3 2 12
## 1324 10 8 2 12
## 1325 10 9 2 12
## 1326 10 10 2 12
## 1327 10 71 2 12
## 1328 10 72 2 12
## 1329 10 73 2 12
## 1330 10 78 2 12
## 1331 10 79 2 12
## 1332 10 80 2 12
## 1333 10 85 2 12
## 1334 10 86 2 12
## 1335 10 95 2 12
## 1336 10 98 2 12
## 1337 10 99 2 12
## 1338 10 100 2 12
## 1339 10 101 2 12
## 1340 10 102 2 12
## 1341 10 103 2 12
## 1342 10 106 2 12
## 1343 10 115 2 12
## 1344 10 116 2 12
## 1345 10 31 2 13
## 1346 10 32 2 13
## 1347 10 33 2 13
## 1348 10 38 2 13
## 1349 10 39 2 13
## 1350 10 40 2 13
## 1351 10 45 2 13
## 1352 10 46 2 13
## 1353 10 55 2 13
## 1354 10 58 2 13
## 1355 10 59 2 13
## 1356 10 60 2 13
## 1357 10 61 2 13
## 1358 10 62 2 13
## 1359 10 63 2 13
## 1360 10 66 2 13
## 1361 10 75 2 13
## 1362 10 76 2 13
## 1363 10 81 2 13
## 1364 10 82 2 13
## 1365 10 83 2 13
## 1366 10 88 2 13
## 1367 10 89 2 13
## 1368 10 90 2 13
## 1369 10 31 2 13
## 1370 10 32 2 13
## 1371 10 33 2 13
## 1372 10 38 2 13
## 1373 10 39 2 13
## 1374 10 40 2 13
## 1375 10 45 2 13
## 1376 10 46 2 13
## 1377 10 55 2 13
## 1378 10 58 2 13
## 1379 10 59 2 13
## 1380 10 60 2 13
## 1381 10 61 2 13
## 1382 10 62 2 13
## 1383 10 63 2 13
## 1384 10 66 2 13
## 1385 10 75 2 13
## 1386 10 76 2 13
## 1387 10 81 2 13
## 1388 10 82 2 13
## 1389 10 83 2 13
## 1390 10 88 2 13
## 1391 10 89 2 13
## 1392 10 90 2 13
## 1393 10 31 2 13
## 1394 10 32 2 13
## 1395 10 33 2 13
## 1396 10 38 2 13
## 1397 10 39 2 13
## 1398 10 40 2 13
## 1399 10 45 2 13
## 1400 10 46 2 13
## 1401 10 55 2 13
## 1402 10 58 2 13
## 1403 10 59 2 13
## 1404 10 60 2 13
## 1405 10 61 2 13
## 1406 10 62 2 13
## 1407 10 63 2 13
## 1408 10 66 2 13
## 1409 10 75 2 13
## 1410 10 76 2 13
## 1411 10 81 2 13
## 1412 10 82 2 13
## 1413 10 83 2 13
## 1414 10 88 2 13
## 1415 10 89 2 13
## 1416 10 90 2 13
## 1417 10 31 2 13
## 1418 10 32 2 13
## 1419 10 33 2 13
## 1420 10 38 2 13
## 1421 10 39 2 13
## 1422 10 40 2 13
## 1423 10 45 2 13
## 1424 10 46 2 13
## 1425 10 55 2 13
## 1426 10 58 2 13
## 1427 10 59 2 13
## 1428 10 60 2 13
## 1429 10 61 2 13
## 1430 10 62 2 13
## 1431 10 63 2 13
## 1432 10 66 2 13
## 1433 10 75 2 13
## 1434 10 76 2 13
## 1435 10 81 2 13
## 1436 10 82 2 13
## 1437 10 83 2 13
## 1438 10 88 2 13
## 1439 10 89 2 13
## 1440 10 90 2 13
## 1441 10 31 2 13
## 1442 10 32 2 13
## 1443 10 33 2 13
## 1444 10 38 2 13
## 1445 10 39 2 13
## 1446 10 40 2 13
## 1447 10 45 2 13
## 1448 10 46 2 13
## 1449 10 55 2 13
## 1450 10 58 2 13
## 1451 10 59 2 13
## 1452 10 60 2 13
## 1453 10 61 2 13
## 1454 10 62 2 13
## 1455 10 63 2 13
## 1456 10 66 2 13
## 1457 10 75 2 13
## 1458 10 76 2 13
## 1459 10 81 2 13
## 1460 10 82 2 13
## 1461 10 83 2 13
## 1462 10 88 2 13
## 1463 10 89 2 13
## 1464 10 90 2 13
## 1465 10 31 2 13
## 1466 10 32 2 13
## 1467 10 33 2 13
## 1468 10 38 2 13
## 1469 10 39 2 13
## 1470 10 40 2 13
## 1471 10 45 2 13
## 1472 10 46 2 13
## 1473 10 55 2 13
## 1474 10 58 2 13
## 1475 10 59 2 13
## 1476 10 60 2 13
## 1477 10 61 2 13
## 1478 10 62 2 13
## 1479 10 63 2 13
## 1480 10 66 2 13
## 1481 10 75 2 13
## 1482 10 76 2 13
## 1483 10 81 2 13
## 1484 10 82 2 13
## 1485 10 83 2 13
## 1486 10 88 2 13
## 1487 10 89 2 13
## 1488 10 90 2 13
## 1489 10 31 2 13
## 1490 10 32 2 13
## 1491 10 33 2 13
## 1492 10 38 2 13
## 1493 10 39 2 13
## 1494 10 40 2 13
## 1495 10 45 2 13
## 1496 10 46 2 13
## 1497 10 55 2 13
## 1498 10 58 2 13
## 1499 10 59 2 13
## 1500 10 60 2 13
## 1501 10 61 2 13
## 1502 10 62 2 13
## 1503 10 63 2 13
## 1504 10 66 2 13
## 1505 10 75 2 13
## 1506 10 76 2 13
## 1507 10 81 2 13
## 1508 10 82 2 13
## 1509 10 83 2 13
## 1510 10 88 2 13
## 1511 10 89 2 13
## 1512 10 90 2 13
## 1513 10 31 2 13
## 1514 10 32 2 13
## 1515 10 33 2 13
## 1516 10 38 2 13
## 1517 10 39 2 13
## 1518 10 40 2 13
## 1519 10 45 2 13
## 1520 10 46 2 13
## 1521 10 55 2 13
## 1522 10 58 2 13
## 1523 10 59 2 13
## 1524 10 60 2 13
## 1525 10 61 2 13
## 1526 10 62 2 13
## 1527 10 63 2 13
## 1528 10 66 2 13
## 1529 10 75 2 13
## 1530 10 76 2 13
## 1531 10 81 2 13
## 1532 10 82 2 13
## 1533 10 83 2 13
## 1534 10 88 2 13
## 1535 10 89 2 13
## 1536 10 90 2 13
## 1537 9 11 2 14
## 1538 9 12 2 14
## 1539 9 13 2 14
## 1540 9 16 2 14
## 1541 9 25 2 14
## 1542 9 28 2 14
## 1543 9 29 2 14
## 1544 9 30 2 14
## 1545 9 51 2 14
## 1546 9 52 2 14
## 1547 9 53 2 14
## 1548 9 56 2 14
## 1549 9 65 2 14
## 1550 9 68 2 14
## 1551 9 69 2 14
## 1552 9 70 2 14
## 1553 9 91 2 14
## 1554 9 92 2 14
## 1555 9 93 2 14
## 1556 9 96 2 14
## 1557 9 105 2 14
## 1558 9 108 2 14
## 1559 9 109 2 14
## 1560 9 110 2 14
## 1561 9 11 2 14
## 1562 9 12 2 14
## 1563 9 13 2 14
## 1564 9 16 2 14
## 1565 9 25 2 14
## 1566 9 28 2 14
## 1567 9 29 2 14
## 1568 9 30 2 14
## 1569 9 51 2 14
## 1570 9 52 2 14
## 1571 9 53 2 14
## 1572 9 56 2 14
## 1573 9 65 2 14
## 1574 9 68 2 14
## 1575 9 69 2 14
## 1576 9 70 2 14
## 1577 9 91 2 14
## 1578 9 92 2 14
## 1579 9 93 2 14
## 1580 9 96 2 14
## 1581 9 105 2 14
## 1582 9 108 2 14
## 1583 9 109 2 14
## 1584 9 110 2 14
## 1585 9 11 2 14
## 1586 9 12 2 14
## 1587 9 13 2 14
## 1588 9 16 2 14
## 1589 9 25 2 14
## 1590 9 28 2 14
## 1591 9 29 2 14
## 1592 9 30 2 14
## 1593 9 51 2 14
## 1594 9 52 2 14
## 1595 9 53 2 14
## 1596 9 56 2 14
## 1597 9 65 2 14
## 1598 9 68 2 14
## 1599 9 69 2 14
## 1600 9 70 2 14
## 1601 9 91 2 14
## 1602 9 92 2 14
## 1603 9 93 2 14
## 1604 9 96 2 14
## 1605 9 105 2 14
## 1606 9 108 2 14
## 1607 9 109 2 14
## 1608 9 110 2 14
## 1609 9 11 2 14
## 1610 9 12 2 14
## 1611 9 13 2 14
## 1612 9 16 2 14
## 1613 9 25 2 14
## 1614 9 28 2 14
## 1615 9 29 2 14
## 1616 9 30 2 14
## 1617 9 51 2 14
## 1618 9 52 2 14
## 1619 9 53 2 14
## 1620 9 56 2 14
## 1621 9 65 2 14
## 1622 9 68 2 14
## 1623 9 69 2 14
## 1624 9 70 2 14
## 1625 9 91 2 14
## 1626 9 92 2 14
## 1627 9 93 2 14
## 1628 9 96 2 14
## 1629 9 105 2 14
## 1630 9 108 2 14
## 1631 9 109 2 14
## 1632 9 110 2 14
## 1633 9 11 2 14
## 1634 9 12 2 14
## 1635 9 13 2 14
## 1636 9 16 2 14
## 1637 9 25 2 14
## 1638 9 28 2 14
## 1639 9 29 2 14
## 1640 9 30 2 14
## 1641 9 51 2 14
## 1642 9 52 2 14
## 1643 9 53 2 14
## 1644 9 56 2 14
## 1645 9 65 2 14
## 1646 9 68 2 14
## 1647 9 69 2 14
## 1648 9 70 2 14
## 1649 9 91 2 14
## 1650 9 92 2 14
## 1651 9 93 2 14
## 1652 9 96 2 14
## 1653 9 105 2 14
## 1654 9 108 2 14
## 1655 9 109 2 14
## 1656 9 110 2 14
## 1657 9 11 2 14
## 1658 9 12 2 14
## 1659 9 13 2 14
## 1660 9 16 2 14
## 1661 9 25 2 14
## 1662 9 28 2 14
## 1663 9 29 2 14
## 1664 9 30 2 14
## 1665 9 51 2 14
## 1666 9 52 2 14
## 1667 9 53 2 14
## 1668 9 56 2 14
## 1669 9 65 2 14
## 1670 9 68 2 14
## 1671 9 69 2 14
## 1672 9 70 2 14
## 1673 9 91 2 14
## 1674 9 92 2 14
## 1675 9 93 2 14
## 1676 9 96 2 14
## 1677 9 105 2 14
## 1678 9 108 2 14
## 1679 9 109 2 14
## 1680 9 110 2 14
## 1681 9 11 2 14
## 1682 9 12 2 14
## 1683 9 13 2 14
## 1684 9 16 2 14
## 1685 9 25 2 14
## 1686 9 28 2 14
## 1687 9 29 2 14
## 1688 9 30 2 14
## 1689 9 51 2 14
## 1690 9 52 2 14
## 1691 9 53 2 14
## 1692 9 56 2 14
## 1693 9 65 2 14
## 1694 9 68 2 14
## 1695 9 69 2 14
## 1696 9 70 2 14
## 1697 9 91 2 14
## 1698 9 92 2 14
## 1699 9 93 2 14
## 1700 9 96 2 14
## 1701 9 105 2 14
## 1702 9 108 2 14
## 1703 9 109 2 14
## 1704 9 110 2 14
## 1705 9 11 2 14
## 1706 9 12 2 14
## 1707 9 13 2 14
## 1708 9 16 2 14
## 1709 9 25 2 14
## 1710 9 28 2 14
## 1711 9 29 2 14
## 1712 9 30 2 14
## 1713 9 51 2 14
## 1714 9 52 2 14
## 1715 9 53 2 14
## 1716 9 56 2 14
## 1717 9 65 2 14
## 1718 9 68 2 14
## 1719 9 69 2 14
## 1720 9 70 2 14
## 1721 9 91 2 14
## 1722 9 92 2 14
## 1723 9 93 2 14
## 1724 9 96 2 14
## 1725 9 105 2 14
## 1726 9 108 2 14
## 1727 9 109 2 14
## 1728 9 110 2 14
## 1729 9 4 2 15
## 1730 9 7 2 15
## 1731 9 14 2 15
## 1732 9 17 2 15
## 1733 9 24 2 15
## 1734 9 27 2 15
## 1735 9 34 2 15
## 1736 9 37 2 15
## 1737 9 44 2 15
## 1738 9 47 2 15
## 1739 9 54 2 15
## 1740 9 57 2 15
## 1741 9 64 2 15
## 1742 9 67 2 15
## 1743 9 74 2 15
## 1744 9 77 2 15
## 1745 9 84 2 15
## 1746 9 87 2 15
## 1747 9 94 2 15
## 1748 9 97 2 15
## 1749 9 104 2 15
## 1750 9 107 2 15
## 1751 9 114 2 15
## 1752 9 117 2 15
## 1753 9 4 2 15
## 1754 9 7 2 15
## 1755 9 14 2 15
## 1756 9 17 2 15
## 1757 9 24 2 15
## 1758 9 27 2 15
## 1759 9 34 2 15
## 1760 9 37 2 15
## 1761 9 44 2 15
## 1762 9 47 2 15
## 1763 9 54 2 15
## 1764 9 57 2 15
## 1765 9 64 2 15
## 1766 9 67 2 15
## 1767 9 74 2 15
## 1768 9 77 2 15
## 1769 9 84 2 15
## 1770 9 87 2 15
## 1771 9 94 2 15
## 1772 9 97 2 15
## 1773 9 104 2 15
## 1774 9 107 2 15
## 1775 9 114 2 15
## 1776 9 117 2 15
## 1777 9 4 2 15
## 1778 9 7 2 15
## 1779 9 14 2 15
## 1780 9 17 2 15
## 1781 9 24 2 15
## 1782 9 27 2 15
## 1783 9 34 2 15
## 1784 9 37 2 15
## 1785 9 44 2 15
## 1786 9 47 2 15
## 1787 9 54 2 15
## 1788 9 57 2 15
## 1789 9 64 2 15
## 1790 9 67 2 15
## 1791 9 74 2 15
## 1792 9 77 2 15
## 1793 9 84 2 15
## 1794 9 87 2 15
## 1795 9 94 2 15
## 1796 9 97 2 15
## 1797 9 104 2 15
## 1798 9 107 2 15
## 1799 9 114 2 15
## 1800 9 117 2 15
## 1801 9 4 2 15
## 1802 9 7 2 15
## 1803 9 14 2 15
## 1804 9 17 2 15
## 1805 9 24 2 15
## 1806 9 27 2 15
## 1807 9 34 2 15
## 1808 9 37 2 15
## 1809 9 44 2 15
## 1810 9 47 2 15
## 1811 9 54 2 15
## 1812 9 57 2 15
## 1813 9 64 2 15
## 1814 9 67 2 15
## 1815 9 74 2 15
## 1816 9 77 2 15
## 1817 9 84 2 15
## 1818 9 87 2 15
## 1819 9 94 2 15
## 1820 9 97 2 15
## 1821 9 104 2 15
## 1822 9 107 2 15
## 1823 9 114 2 15
## 1824 9 117 2 15
## 1825 9 4 2 15
## 1826 9 7 2 15
## 1827 9 14 2 15
## 1828 9 17 2 15
## 1829 9 24 2 15
## 1830 9 27 2 15
## 1831 9 34 2 15
## 1832 9 37 2 15
## 1833 9 44 2 15
## 1834 9 47 2 15
## 1835 9 54 2 15
## 1836 9 57 2 15
## 1837 9 64 2 15
## 1838 9 67 2 15
## 1839 9 74 2 15
## 1840 9 77 2 15
## 1841 9 84 2 15
## 1842 9 87 2 15
## 1843 9 94 2 15
## 1844 9 97 2 15
## 1845 9 104 2 15
## 1846 9 107 2 15
## 1847 9 114 2 15
## 1848 9 117 2 15
## 1849 9 4 2 15
## 1850 9 7 2 15
## 1851 9 14 2 15
## 1852 9 17 2 15
## 1853 9 24 2 15
## 1854 9 27 2 15
## 1855 9 34 2 15
## 1856 9 37 2 15
## 1857 9 44 2 15
## 1858 9 47 2 15
## 1859 9 54 2 15
## 1860 9 57 2 15
## 1861 9 64 2 15
## 1862 9 67 2 15
## 1863 9 74 2 15
## 1864 9 77 2 15
## 1865 9 84 2 15
## 1866 9 87 2 15
## 1867 9 94 2 15
## 1868 9 97 2 15
## 1869 9 104 2 15
## 1870 9 107 2 15
## 1871 9 114 2 15
## 1872 9 117 2 15
## 1873 9 4 2 15
## 1874 9 7 2 15
## 1875 9 14 2 15
## 1876 9 17 2 15
## 1877 9 24 2 15
## 1878 9 27 2 15
## 1879 9 34 2 15
## 1880 9 37 2 15
## 1881 9 44 2 15
## 1882 9 47 2 15
## 1883 9 54 2 15
## 1884 9 57 2 15
## 1885 9 64 2 15
## 1886 9 67 2 15
## 1887 9 74 2 15
## 1888 9 77 2 15
## 1889 9 84 2 15
## 1890 9 87 2 15
## 1891 9 94 2 15
## 1892 9 97 2 15
## 1893 9 104 2 15
## 1894 9 107 2 15
## 1895 9 114 2 15
## 1896 9 117 2 15
## 1897 9 4 2 15
## 1898 9 7 2 15
## 1899 9 14 2 15
## 1900 9 17 2 15
## 1901 9 24 2 15
## 1902 9 27 2 15
## 1903 9 34 2 15
## 1904 9 37 2 15
## 1905 9 44 2 15
## 1906 9 47 2 15
## 1907 9 54 2 15
## 1908 9 57 2 15
## 1909 9 64 2 15
## 1910 9 67 2 15
## 1911 9 74 2 15
## 1912 9 77 2 15
## 1913 9 84 2 15
## 1914 9 87 2 15
## 1915 9 94 2 15
## 1916 9 97 2 15
## 1917 9 104 2 15
## 1918 9 107 2 15
## 1919 9 114 2 15
## 1920 9 117 2 15
## 1921 8 16 3 11
## 1922 8 17 3 11
## 1923 8 24 3 11
## 1924 8 25 3 11
## 1925 8 44 3 11
## 1926 8 45 3 11
## 1927 8 46 3 11
## 1928 8 47 3 11
## 1929 8 51 3 11
## 1930 8 52 3 11
## 1931 8 59 3 11
## 1932 8 60 3 11
## 1933 8 79 3 11
## 1934 8 80 3 11
## 1935 8 81 3 11
## 1936 8 82 3 11
## 1937 8 101 3 11
## 1938 8 102 3 11
## 1939 8 109 3 11
## 1940 8 110 3 11
## 1941 8 114 3 11
## 1942 8 115 3 11
## 1943 8 116 3 11
## 1944 8 117 3 11
## 1945 8 16 3 11
## 1946 8 17 3 11
## 1947 8 24 3 11
## 1948 8 25 3 11
## 1949 8 44 3 11
## 1950 8 45 3 11
## 1951 8 46 3 11
## 1952 8 47 3 11
## 1953 8 51 3 11
## 1954 8 52 3 11
## 1955 8 59 3 11
## 1956 8 60 3 11
## 1957 8 79 3 11
## 1958 8 80 3 11
## 1959 8 81 3 11
## 1960 8 82 3 11
## 1961 8 101 3 11
## 1962 8 102 3 11
## 1963 8 109 3 11
## 1964 8 110 3 11
## 1965 8 114 3 11
## 1966 8 115 3 11
## 1967 8 116 3 11
## 1968 8 117 3 11
## 1969 8 16 3 11
## 1970 8 17 3 11
## 1971 8 24 3 11
## 1972 8 25 3 11
## 1973 8 44 3 11
## 1974 8 45 3 11
## 1975 8 46 3 11
## 1976 8 47 3 11
## 1977 8 51 3 11
## 1978 8 52 3 11
## 1979 8 59 3 11
## 1980 8 60 3 11
## 1981 8 79 3 11
## 1982 8 80 3 11
## 1983 8 81 3 11
## 1984 8 82 3 11
## 1985 8 101 3 11
## 1986 8 102 3 11
## 1987 8 109 3 11
## 1988 8 110 3 11
## 1989 8 114 3 11
## 1990 8 115 3 11
## 1991 8 116 3 11
## 1992 8 117 3 11
## 1993 8 16 3 11
## 1994 8 17 3 11
## 1995 8 24 3 11
## 1996 8 25 3 11
## 1997 8 44 3 11
## 1998 8 45 3 11
## 1999 8 46 3 11
## 2000 8 47 3 11
## 2001 8 51 3 11
## 2002 8 52 3 11
## 2003 8 59 3 11
## 2004 8 60 3 11
## 2005 8 79 3 11
## 2006 8 80 3 11
## 2007 8 81 3 11
## 2008 8 82 3 11
## 2009 8 101 3 11
## 2010 8 102 3 11
## 2011 8 109 3 11
## 2012 8 110 3 11
## 2013 8 114 3 11
## 2014 8 115 3 11
## 2015 8 116 3 11
## 2016 8 117 3 11
## 2017 8 16 3 11
## 2018 8 17 3 11
## 2019 8 24 3 11
## 2020 8 25 3 11
## 2021 8 44 3 11
## 2022 8 45 3 11
## 2023 8 46 3 11
## 2024 8 47 3 11
## 2025 8 51 3 11
## 2026 8 52 3 11
## 2027 8 59 3 11
## 2028 8 60 3 11
## 2029 8 79 3 11
## 2030 8 80 3 11
## 2031 8 81 3 11
## 2032 8 82 3 11
## 2033 8 101 3 11
## 2034 8 102 3 11
## 2035 8 109 3 11
## 2036 8 110 3 11
## 2037 8 114 3 11
## 2038 8 115 3 11
## 2039 8 116 3 11
## 2040 8 117 3 11
## 2041 8 16 3 11
## 2042 8 17 3 11
## 2043 8 24 3 11
## 2044 8 25 3 11
## 2045 8 44 3 11
## 2046 8 45 3 11
## 2047 8 46 3 11
## 2048 8 47 3 11
## 2049 8 51 3 11
## 2050 8 52 3 11
## 2051 8 59 3 11
## 2052 8 60 3 11
## 2053 8 79 3 11
## 2054 8 80 3 11
## 2055 8 81 3 11
## 2056 8 82 3 11
## 2057 8 101 3 11
## 2058 8 102 3 11
## 2059 8 109 3 11
## 2060 8 110 3 11
## 2061 8 114 3 11
## 2062 8 115 3 11
## 2063 8 116 3 11
## 2064 8 117 3 11
## 2065 8 16 3 11
## 2066 8 17 3 11
## 2067 8 24 3 11
## 2068 8 25 3 11
## 2069 8 44 3 11
## 2070 8 45 3 11
## 2071 8 46 3 11
## 2072 8 47 3 11
## 2073 8 51 3 11
## 2074 8 52 3 11
## 2075 8 59 3 11
## 2076 8 60 3 11
## 2077 8 79 3 11
## 2078 8 80 3 11
## 2079 8 81 3 11
## 2080 8 82 3 11
## 2081 8 101 3 11
## 2082 8 102 3 11
## 2083 8 109 3 11
## 2084 8 110 3 11
## 2085 8 114 3 11
## 2086 8 115 3 11
## 2087 8 116 3 11
## 2088 8 117 3 11
## 2089 8 16 3 11
## 2090 8 17 3 11
## 2091 8 24 3 11
## 2092 8 25 3 11
## 2093 8 44 3 11
## 2094 8 45 3 11
## 2095 8 46 3 11
## 2096 8 47 3 11
## 2097 8 51 3 11
## 2098 8 52 3 11
## 2099 8 59 3 11
## 2100 8 60 3 11
## 2101 8 79 3 11
## 2102 8 80 3 11
## 2103 8 81 3 11
## 2104 8 82 3 11
## 2105 8 101 3 11
## 2106 8 102 3 11
## 2107 8 109 3 11
## 2108 8 110 3 11
## 2109 8 114 3 11
## 2110 8 115 3 11
## 2111 8 116 3 11
## 2112 8 117 3 11
## 2113 10 4 3 12
## 2114 10 5 3 12
## 2115 10 6 3 12
## 2116 10 7 3 12
## 2117 10 11 3 12
## 2118 10 12 3 12
## 2119 10 19 3 12
## 2120 10 20 3 12
## 2121 10 39 3 12
## 2122 10 40 3 12
## 2123 10 41 3 12
## 2124 10 42 3 12
## 2125 10 61 3 12
## 2126 10 62 3 12
## 2127 10 69 3 12
## 2128 10 70 3 12
## 2129 10 74 3 12
## 2130 10 75 3 12
## 2131 10 76 3 12
## 2132 10 77 3 12
## 2133 10 96 3 12
## 2134 10 97 3 12
## 2135 10 104 3 12
## 2136 10 105 3 12
## 2137 10 4 3 12
## 2138 10 5 3 12
## 2139 10 6 3 12
## 2140 10 7 3 12
## 2141 10 11 3 12
## 2142 10 12 3 12
## 2143 10 19 3 12
## 2144 10 20 3 12
## 2145 10 39 3 12
## 2146 10 40 3 12
## 2147 10 41 3 12
## 2148 10 42 3 12
## 2149 10 61 3 12
## 2150 10 62 3 12
## 2151 10 69 3 12
## 2152 10 70 3 12
## 2153 10 74 3 12
## 2154 10 75 3 12
## 2155 10 76 3 12
## 2156 10 77 3 12
## 2157 10 96 3 12
## 2158 10 97 3 12
## 2159 10 104 3 12
## 2160 10 105 3 12
## 2161 10 4 3 12
## 2162 10 5 3 12
## 2163 10 6 3 12
## 2164 10 7 3 12
## 2165 10 11 3 12
## 2166 10 12 3 12
## 2167 10 19 3 12
## 2168 10 20 3 12
## 2169 10 39 3 12
## 2170 10 40 3 12
## 2171 10 41 3 12
## 2172 10 42 3 12
## 2173 10 61 3 12
## 2174 10 62 3 12
## 2175 10 69 3 12
## 2176 10 70 3 12
## 2177 10 74 3 12
## 2178 10 75 3 12
## 2179 10 76 3 12
## 2180 10 77 3 12
## 2181 10 96 3 12
## 2182 10 97 3 12
## 2183 10 104 3 12
## 2184 10 105 3 12
## 2185 10 4 3 12
## 2186 10 5 3 12
## 2187 10 6 3 12
## 2188 10 7 3 12
## 2189 10 11 3 12
## 2190 10 12 3 12
## 2191 10 19 3 12
## 2192 10 20 3 12
## 2193 10 39 3 12
## 2194 10 40 3 12
## 2195 10 41 3 12
## 2196 10 42 3 12
## 2197 10 61 3 12
## 2198 10 62 3 12
## 2199 10 69 3 12
## 2200 10 70 3 12
## 2201 10 74 3 12
## 2202 10 75 3 12
## 2203 10 76 3 12
## 2204 10 77 3 12
## 2205 10 96 3 12
## 2206 10 97 3 12
## 2207 10 104 3 12
## 2208 10 105 3 12
## 2209 10 4 3 12
## 2210 10 5 3 12
## 2211 10 6 3 12
## 2212 10 7 3 12
## 2213 10 11 3 12
## 2214 10 12 3 12
## 2215 10 19 3 12
## 2216 10 20 3 12
## 2217 10 39 3 12
## 2218 10 40 3 12
## 2219 10 41 3 12
## 2220 10 42 3 12
## 2221 10 61 3 12
## 2222 10 62 3 12
## 2223 10 69 3 12
## 2224 10 70 3 12
## 2225 10 74 3 12
## 2226 10 75 3 12
## 2227 10 76 3 12
## 2228 10 77 3 12
## 2229 10 96 3 12
## 2230 10 97 3 12
## 2231 10 104 3 12
## 2232 10 105 3 12
## 2233 10 4 3 12
## 2234 10 5 3 12
## 2235 10 6 3 12
## 2236 10 7 3 12
## 2237 10 11 3 12
## 2238 10 12 3 12
## 2239 10 19 3 12
## 2240 10 20 3 12
## 2241 10 39 3 12
## 2242 10 40 3 12
## 2243 10 41 3 12
## 2244 10 42 3 12
## 2245 10 61 3 12
## 2246 10 62 3 12
## 2247 10 69 3 12
## 2248 10 70 3 12
## 2249 10 74 3 12
## 2250 10 75 3 12
## 2251 10 76 3 12
## 2252 10 77 3 12
## 2253 10 96 3 12
## 2254 10 97 3 12
## 2255 10 104 3 12
## 2256 10 105 3 12
## 2257 10 4 3 12
## 2258 10 5 3 12
## 2259 10 6 3 12
## 2260 10 7 3 12
## 2261 10 11 3 12
## 2262 10 12 3 12
## 2263 10 19 3 12
## 2264 10 20 3 12
## 2265 10 39 3 12
## 2266 10 40 3 12
## 2267 10 41 3 12
## 2268 10 42 3 12
## 2269 10 61 3 12
## 2270 10 62 3 12
## 2271 10 69 3 12
## 2272 10 70 3 12
## 2273 10 74 3 12
## 2274 10 75 3 12
## 2275 10 76 3 12
## 2276 10 77 3 12
## 2277 10 96 3 12
## 2278 10 97 3 12
## 2279 10 104 3 12
## 2280 10 105 3 12
## 2281 10 4 3 12
## 2282 10 5 3 12
## 2283 10 6 3 12
## 2284 10 7 3 12
## 2285 10 11 3 12
## 2286 10 12 3 12
## 2287 10 19 3 12
## 2288 10 20 3 12
## 2289 10 39 3 12
## 2290 10 40 3 12
## 2291 10 41 3 12
## 2292 10 42 3 12
## 2293 10 61 3 12
## 2294 10 62 3 12
## 2295 10 69 3 12
## 2296 10 70 3 12
## 2297 10 74 3 12
## 2298 10 75 3 12
## 2299 10 76 3 12
## 2300 10 77 3 12
## 2301 10 96 3 12
## 2302 10 97 3 12
## 2303 10 104 3 12
## 2304 10 105 3 12
## 2305 10 1 3 13
## 2306 10 2 3 13
## 2307 10 21 3 13
## 2308 10 22 3 13
## 2309 10 29 3 13
## 2310 10 30 3 13
## 2311 10 34 3 13
## 2312 10 35 3 13
## 2313 10 36 3 13
## 2314 10 37 3 13
## 2315 10 56 3 13
## 2316 10 57 3 13
## 2317 10 64 3 13
## 2318 10 65 3 13
## 2319 10 84 3 13
## 2320 10 85 3 13
## 2321 10 86 3 13
## 2322 10 87 3 13
## 2323 10 91 3 13
## 2324 10 92 3 13
## 2325 10 99 3 13
## 2326 10 100 3 13
## 2327 10 119 3 13
## 2328 10 120 3 13
## 2329 10 1 3 13
## 2330 10 2 3 13
## 2331 10 21 3 13
## 2332 10 22 3 13
## 2333 10 29 3 13
## 2334 10 30 3 13
## 2335 10 34 3 13
## 2336 10 35 3 13
## 2337 10 36 3 13
## 2338 10 37 3 13
## 2339 10 56 3 13
## 2340 10 57 3 13
## 2341 10 64 3 13
## 2342 10 65 3 13
## 2343 10 84 3 13
## 2344 10 85 3 13
## 2345 10 86 3 13
## 2346 10 87 3 13
## 2347 10 91 3 13
## 2348 10 92 3 13
## 2349 10 99 3 13
## 2350 10 100 3 13
## 2351 10 119 3 13
## 2352 10 120 3 13
## 2353 10 1 3 13
## 2354 10 2 3 13
## 2355 10 21 3 13
## 2356 10 22 3 13
## 2357 10 29 3 13
## 2358 10 30 3 13
## 2359 10 34 3 13
## 2360 10 35 3 13
## 2361 10 36 3 13
## 2362 10 37 3 13
## 2363 10 56 3 13
## 2364 10 57 3 13
## 2365 10 64 3 13
## 2366 10 65 3 13
## 2367 10 84 3 13
## 2368 10 85 3 13
## 2369 10 86 3 13
## 2370 10 87 3 13
## 2371 10 91 3 13
## 2372 10 92 3 13
## 2373 10 99 3 13
## 2374 10 100 3 13
## 2375 10 119 3 13
## 2376 10 120 3 13
## 2377 10 1 3 13
## 2378 10 2 3 13
## 2379 10 21 3 13
## 2380 10 22 3 13
## 2381 10 29 3 13
## 2382 10 30 3 13
## 2383 10 34 3 13
## 2384 10 35 3 13
## 2385 10 36 3 13
## 2386 10 37 3 13
## 2387 10 56 3 13
## 2388 10 57 3 13
## 2389 10 64 3 13
## 2390 10 65 3 13
## 2391 10 84 3 13
## 2392 10 85 3 13
## 2393 10 86 3 13
## 2394 10 87 3 13
## 2395 10 91 3 13
## 2396 10 92 3 13
## 2397 10 99 3 13
## 2398 10 100 3 13
## 2399 10 119 3 13
## 2400 10 120 3 13
## 2401 10 1 3 13
## 2402 10 2 3 13
## 2403 10 21 3 13
## 2404 10 22 3 13
## 2405 10 29 3 13
## 2406 10 30 3 13
## 2407 10 34 3 13
## 2408 10 35 3 13
## 2409 10 36 3 13
## 2410 10 37 3 13
## 2411 10 56 3 13
## 2412 10 57 3 13
## 2413 10 64 3 13
## 2414 10 65 3 13
## 2415 10 84 3 13
## 2416 10 85 3 13
## 2417 10 86 3 13
## 2418 10 87 3 13
## 2419 10 91 3 13
## 2420 10 92 3 13
## 2421 10 99 3 13
## 2422 10 100 3 13
## 2423 10 119 3 13
## 2424 10 120 3 13
## 2425 10 1 3 13
## 2426 10 2 3 13
## 2427 10 21 3 13
## 2428 10 22 3 13
## 2429 10 29 3 13
## 2430 10 30 3 13
## 2431 10 34 3 13
## 2432 10 35 3 13
## 2433 10 36 3 13
## 2434 10 37 3 13
## 2435 10 56 3 13
## 2436 10 57 3 13
## 2437 10 64 3 13
## 2438 10 65 3 13
## 2439 10 84 3 13
## 2440 10 85 3 13
## 2441 10 86 3 13
## 2442 10 87 3 13
## 2443 10 91 3 13
## 2444 10 92 3 13
## 2445 10 99 3 13
## 2446 10 100 3 13
## 2447 10 119 3 13
## 2448 10 120 3 13
## 2449 10 1 3 13
## 2450 10 2 3 13
## 2451 10 21 3 13
## 2452 10 22 3 13
## 2453 10 29 3 13
## 2454 10 30 3 13
## 2455 10 34 3 13
## 2456 10 35 3 13
## 2457 10 36 3 13
## 2458 10 37 3 13
## 2459 10 56 3 13
## 2460 10 57 3 13
## 2461 10 64 3 13
## 2462 10 65 3 13
## 2463 10 84 3 13
## 2464 10 85 3 13
## 2465 10 86 3 13
## 2466 10 87 3 13
## 2467 10 91 3 13
## 2468 10 92 3 13
## 2469 10 99 3 13
## 2470 10 100 3 13
## 2471 10 119 3 13
## 2472 10 120 3 13
## 2473 10 1 3 13
## 2474 10 2 3 13
## 2475 10 21 3 13
## 2476 10 22 3 13
## 2477 10 29 3 13
## 2478 10 30 3 13
## 2479 10 34 3 13
## 2480 10 35 3 13
## 2481 10 36 3 13
## 2482 10 37 3 13
## 2483 10 56 3 13
## 2484 10 57 3 13
## 2485 10 64 3 13
## 2486 10 65 3 13
## 2487 10 84 3 13
## 2488 10 85 3 13
## 2489 10 86 3 13
## 2490 10 87 3 13
## 2491 10 91 3 13
## 2492 10 92 3 13
## 2493 10 99 3 13
## 2494 10 100 3 13
## 2495 10 119 3 13
## 2496 10 120 3 13
## 2497 7 9 3 14
## 2498 7 10 3 14
## 2499 7 14 3 14
## 2500 7 15 3 14
## 2501 7 26 3 14
## 2502 7 27 3 14
## 2503 7 31 3 14
## 2504 7 32 3 14
## 2505 7 49 3 14
## 2506 7 50 3 14
## 2507 7 54 3 14
## 2508 7 55 3 14
## 2509 7 66 3 14
## 2510 7 67 3 14
## 2511 7 71 3 14
## 2512 7 72 3 14
## 2513 7 89 3 14
## 2514 7 90 3 14
## 2515 7 94 3 14
## 2516 7 95 3 14
## 2517 7 106 3 14
## 2518 7 107 3 14
## 2519 7 111 3 14
## 2520 7 112 3 14
## 2521 7 9 3 14
## 2522 7 10 3 14
## 2523 7 14 3 14
## 2524 7 15 3 14
## 2525 7 26 3 14
## 2526 7 27 3 14
## 2527 7 31 3 14
## 2528 7 32 3 14
## 2529 7 49 3 14
## 2530 7 50 3 14
## 2531 7 54 3 14
## 2532 7 55 3 14
## 2533 7 66 3 14
## 2534 7 67 3 14
## 2535 7 71 3 14
## 2536 7 72 3 14
## 2537 7 89 3 14
## 2538 7 90 3 14
## 2539 7 94 3 14
## 2540 7 95 3 14
## 2541 7 106 3 14
## 2542 7 107 3 14
## 2543 7 111 3 14
## 2544 7 112 3 14
## 2545 7 9 3 14
## 2546 7 10 3 14
## 2547 7 14 3 14
## 2548 7 15 3 14
## 2549 7 26 3 14
## 2550 7 27 3 14
## 2551 7 31 3 14
## 2552 7 32 3 14
## 2553 7 49 3 14
## 2554 7 50 3 14
## 2555 7 54 3 14
## 2556 7 55 3 14
## 2557 7 66 3 14
## 2558 7 67 3 14
## 2559 7 71 3 14
## 2560 7 72 3 14
## 2561 7 89 3 14
## 2562 7 90 3 14
## 2563 7 94 3 14
## 2564 7 95 3 14
## 2565 7 106 3 14
## 2566 7 107 3 14
## 2567 7 111 3 14
## 2568 7 112 3 14
## 2569 7 9 3 14
## 2570 7 10 3 14
## 2571 7 14 3 14
## 2572 7 15 3 14
## 2573 7 26 3 14
## 2574 7 27 3 14
## 2575 7 31 3 14
## 2576 7 32 3 14
## 2577 7 49 3 14
## 2578 7 50 3 14
## 2579 7 54 3 14
## 2580 7 55 3 14
## 2581 7 66 3 14
## 2582 7 67 3 14
## 2583 7 71 3 14
## 2584 7 72 3 14
## 2585 7 89 3 14
## 2586 7 90 3 14
## 2587 7 94 3 14
## 2588 7 95 3 14
## 2589 7 106 3 14
## 2590 7 107 3 14
## 2591 7 111 3 14
## 2592 7 112 3 14
## 2593 7 9 3 14
## 2594 7 10 3 14
## 2595 7 14 3 14
## 2596 7 15 3 14
## 2597 7 26 3 14
## 2598 7 27 3 14
## 2599 7 31 3 14
## 2600 7 32 3 14
## 2601 7 49 3 14
## 2602 7 50 3 14
## 2603 7 54 3 14
## 2604 7 55 3 14
## 2605 7 66 3 14
## 2606 7 67 3 14
## 2607 7 71 3 14
## 2608 7 72 3 14
## 2609 7 89 3 14
## 2610 7 90 3 14
## 2611 7 94 3 14
## 2612 7 95 3 14
## 2613 7 106 3 14
## 2614 7 107 3 14
## 2615 7 111 3 14
## 2616 7 112 3 14
## 2617 7 9 3 14
## 2618 7 10 3 14
## 2619 7 14 3 14
## 2620 7 15 3 14
## 2621 7 26 3 14
## 2622 7 27 3 14
## 2623 7 31 3 14
## 2624 7 32 3 14
## 2625 7 49 3 14
## 2626 7 50 3 14
## 2627 7 54 3 14
## 2628 7 55 3 14
## 2629 7 66 3 14
## 2630 7 67 3 14
## 2631 7 71 3 14
## [ reached 'max' / getOption("max.print") -- omitted 7289 rows ]
Here I’m filtering patches to have only the ones with disturbance high.
#Filter data sets according to the global disturbance
ds_individuals = ds_individuals %>%
filter(disturbance == disturbance_global_input)
ds_patches = ds_patches %>%
filter(disturbance == disturbance_global_input)
ds_patches_effect_size = ds_patches_effect_size %>%
filter(disturbance == disturbance_global_input)
ds_metaecosystems = ds_metaecosystems %>%
filter(disturbance == disturbance_global_input)
ds_classes = ds_classes %>%
filter(disturbance == disturbance_global_input)
ds_classes_effect_size = ds_classes_effect_size %>%
filter(disturbance == disturbance_global_input)
metaecosystem_type_i = c("Small-Small meta-ecosystem",
"Medium-Medium meta-ecosystem",
"Medium-Medium isolated",
"Large-Large meta-ecosystem",
"Small-Large meta-ecosystem",
"Small-Large isolated")
response_variable = "total_metaecosystem_bioarea_mm2"
plot.metaecos.points(ds_metaecosystems,
metaecosystem_type_i,
response_variable,
3)
plot.metaecos.boxplots(ds_metaecosystems,
metaecosystem_type_i,
response_variable)
plot.metaecos.replicates(ds_metaecosystems,
metaecosystem_type_i,
response_variable)
response_variable = "mean_shannon"
plot.metaecos.points(ds_metaecosystems,
metaecosystem_type_i,
response_variable,
3)
plot.metaecos.boxplots(ds_metaecosystems,
metaecosystem_type_i,
response_variable)
plot.metaecos.replicates(ds_metaecosystems,
metaecosystem_type_i,
response_variable)
response_variable = "bray_curtis"
plot.metaecos.points(ds_metaecosystems,
metaecosystem_type_i,
response_variable,
3)
plot.metaecos.boxplots(ds_metaecosystems,
metaecosystem_type_i,
response_variable)
## Warning: Removed 2 rows containing non-finite values (`stat_boxplot()`).
plot.metaecos.replicates(ds_metaecosystems,
metaecosystem_type_i,
response_variable)
## Warning: Removed 2 rows containing non-finite values (`stat_summary()`).
response_variable = "metaecosystem_richness"
plot.metaecos.points(ds_metaecosystems,
metaecosystem_type_i,
response_variable,
3)
plot.metaecos.boxplots(ds_metaecosystems,
metaecosystem_type_i,
response_variable)
plot.metaecos.replicates(ds_metaecosystems,
metaecosystem_type_i,
response_variable)
response_variable = "total_metaecosystem_bioarea_mm2"
metaecosystem_type_i = c("Medium-Medium meta-ecosystem",
"Medium-Medium isolated",
"Small-Large meta-ecosystem",
"Small-Large isolated")
plot.metaecos.points(ds_metaecosystems,
metaecosystem_type_i,
response_variable,
3)
plot.metaecos.boxplots(ds_metaecosystems,
metaecosystem_type_i,
response_variable)
plot.metaecos.replicates(ds_metaecosystems,
metaecosystem_type_i,
response_variable)
metaecosystem_type_i = c("Medium-Medium meta-ecosystem",
"Small-Large meta-ecosystem")
filtered_data = ds_metaecosystems %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
metaecosystem_type %in% metaecosystem_type_i)
plot.metaecos.points(filtered_data,
metaecosystem_type_i,
response_variable)
null_model = lmer(
get(response_variable) ~
day +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
patch_size_symmetry and
patch_size_symmetry : day)
full_model = lmer(
get(response_variable) ~
day +
patch_size_symmetry +
patch_size_symmetry : day +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood ['lmerMod']
## Formula:
## get(response_variable) ~ day + patch_size_symmetry + patch_size_symmetry:day +
## (day | system_nr)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 588.7 605.5 -286.4 572.7 52
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -1.99 -0.70 -0.08 0.63 2.84
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## system_nr (Intercept) 1662 41
## day 3 2 -1.00
## Residual 672 26
## Number of obs: 60, groups: system_nr, 10
##
## Fixed effects:
## Estimate Std. Error t value
## (Intercept) 201 23 9
## day -6 1 -6
## patch_size_symmetrysymmetric 54 32 2
## day:patch_size_symmetrysymmetric -2 1 -2
##
## Correlation of Fixed Effects:
## (Intr) day ptch__
## day -0.965
## ptch_sz_sym -0.707 0.683
## dy:ptch_sz_ 0.683 -0.707 -0.965
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" System nr: ", filtered_data$system_nr, "<br>",
"Day: ", filtered_data$day, "<br>",
"Meta-ecosystem: ", filtered_data$metaecosystem_type, "<br>",
"Tot Biomass: ", round(filtered_data$total_metaecosystem_bioarea_mm2, digits = 0), "<br>"),
hoverinfo = "text") %>%
plotly::layout(
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(full_model))
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 1.3 0.264 none
patch_size_symmetry)
reduced_model = lmer(
get(response_variable) ~
day +
patch_size_symmetry +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood ['lmerMod']
## Formula: get(response_variable) ~ day + patch_size_symmetry + (day | system_nr)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 588.8 603.5 -287.4 574.8 53
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.04 -0.75 0.02 0.63 2.92
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## system_nr (Intercept) 2193 47
## day 4 2 -1.00
## Residual 678 26
## Number of obs: 60, groups: system_nr, 10
##
## Fixed effects:
## Estimate Std. Error t value
## (Intercept) 224.9 18.1 12.5
## day -7.5 0.8 -9.6
## patch_size_symmetrysymmetric 6.9 8.3 0.8
##
## Correlation of Fixed Effects:
## (Intr) day
## day -0.946
## ptch_sz_sym -0.229 0.000
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" System nr: ", filtered_data$system_nr, "<br>",
"Day: ", filtered_data$day, "<br>",
"Meta-ecosystem: ", filtered_data$metaecosystem_type, "<br>",
"Tot Biomass: ", round(filtered_data$total_metaecosystem_bioarea_mm2, digits = 0), "<br>"),
hoverinfo = "text") %>%
plotly::layout(
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(reduced_model))
model_stats_fixed = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_fixed %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 1.4 0.454 none
results_table = fill.results.table(
results_table,
response_variable,
metaecosystem_type_i,
model_stats_full,
model_stats_fixed
)
metaecosystem_type_i = c("Small-Large meta-ecosystem",
"Small-Large isolated")
filtered_data = ds_metaecosystems %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
metaecosystem_type %in% metaecosystem_type_i)
plot.metaecos.points(filtered_data,
metaecosystem_type_i,
response_variable)
The p-values and ΔAIC of the connection are computed for all possible combinations of the isolated patches, creating a p-value and ΔAIC distributions. We keep as p-value and ΔAIC of the comparison the mean of such distributions.
If you see “Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel = ## 1e-15, : unused control arguments ignored”, Ignore it. It just means that you didn’t pass the control argument to the Nelder_Mead optimiser, so it uses the default.
# Compute stats for all patch combinations
isolated_combinations_sets_filtered = isolated_combinations_sets %>%
filter(disturbance == disturbance_global_input,
metaecosystem_type %in% metaecosystem_type_i)
n_sets = isolated_combinations_sets_filtered %>%
pull(set) %>%
max()
iterated_results_table = data.frame(
Response = as.character(NA),
Levels = as.character(NA),
ΔAIC_full = NA,
p_full = NA,
ΔR2_full = NA,
ΔAIC_fix = NA,
p_fix = NA,
ΔR2_fix = NA,
combination_set = NA,
system_nr_isolated_systems = as.character(NA)
) %>%
slice(-1)
for (set_input in 1:n_sets) {
system_nr_isolated_systems_input = isolated_combinations_sets_filtered %>%
filter(
metaecosystem_type %in% metaecosystem_type_i,
connection == "isolated",
set == set_input
) %>%
pull(system_nr)
filtered_data = ds_metaecosystems %>%
filter(
time_point >= first_time_point_model,
time_point <= last_time_point_model,
metaecosystem_type %in% metaecosystem_type_i,
connection == "connected" |
(connection == "isolated" &
system_nr %in% system_nr_isolated_systems_input)
)
null_model = lmer(
get(response_variable) ~
day +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = optimizer_input,
optCtrl = list(method = method_input))
)
full_model = lmer(
get(response_variable) ~
day +
connection +
connection:day +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = optimizer_input,
optCtrl = list(method = method_input))
)
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
reduced_model = lmer(
get(response_variable) ~
day +
connection +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = optimizer_input,
optCtrl = list(method = method_input))
)
model_stats_fixed = compute.model.stats(reduced_model,
null_model,
"mixed_model")
iterated_results_table = fill.results.table(
iterated_results_table,
response_variable,
metaecosystem_type_i,
model_stats_full,
model_stats_fixed
)
iterated_results_table$set[nrow(iterated_results_table)] = set_input
iterated_results_table$system_nr_isolated_systems[nrow(iterated_results_table)] = paste(system_nr_isolated_systems_input, collapse = " ")
}
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
connection and connection : day)
hist(iterated_results_table$ΔAIC_full, main = "Distribution of ΔAIC of the full model.")
hist(iterated_results_table$p_full, main = "Distribution of p-values of the full model.")
model_stats_full = data.frame(
deltaAIC = mean(iterated_results_table$ΔAIC_full),
p_value = mean(iterated_results_table$p_full),
R2 = NA
)
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -5.1 0.011 ** moderate
iterated_results_table %>%
select(system_nr_isolated_systems,
ΔAIC_full) %>%
arrange(ΔAIC_full)
## system_nr_isolated_systems ΔAIC_full
## 1 1029 1035 1038 1042 -6.022025
## 2 1028 1035 1039 1042 -6.009392
## 3 1029 1032 1038 1045 -5.980998
## 4 1028 1035 1036 1042 -5.971627
## 5 1028 1032 1039 1045 -5.968418
## 6 1029 1035 1037 1043 -5.964009
## 7 1030 1032 1039 1043 -5.953994
## 8 1030 1033 1039 1042 -5.952080
## 9 1027 1035 1039 1043 -5.950406
## 10 1026 1035 1038 1042 -5.949312
## 11 1030 1032 1038 1044 -5.935165
## 12 1030 1034 1038 1042 -5.933681
## 13 1027 1035 1038 1041 -5.932083
## 14 1028 1035 1037 1041 -5.932061
## 15 1027 1035 1036 1043 -5.931435
## 16 1028 1035 1037 1044 -5.931425
## 17 1027 1035 1038 1044 -5.930187
## 18 1028 1032 1036 1045 -5.929937
## 19 1029 1033 1037 1045 -5.922847
## 20 1029 1032 1040 1043 -5.915603
## 21 1029 1033 1040 1042 -5.913018
## 22 1027 1033 1039 1045 -5.911002
## 23 1026 1035 1037 1043 -5.910253
## 24 1026 1032 1038 1045 -5.907733
## 25 1028 1034 1037 1045 -5.891026
## 26 1027 1034 1038 1045 -5.890883
## 27 1027 1033 1036 1045 -5.890744
## 28 1030 1032 1036 1043 -5.885985
## 29 1030 1032 1038 1041 -5.885243
## 30 1028 1032 1040 1044 -5.884380
## 31 1030 1033 1036 1042 -5.882925
## 32 1028 1034 1040 1042 -5.882767
## 33 1030 1033 1037 1044 -5.875438
## 34 1030 1034 1037 1043 -5.875257
## 35 1027 1031 1038 1045 -5.873727
## 36 1028 1031 1037 1045 -5.873315
## 37 1026 1033 1037 1045 -5.870195
## 38 1030 1031 1038 1042 -5.864916
## 39 1028 1032 1040 1041 -5.845141
## 40 1030 1033 1037 1041 -5.842017
## 41 1030 1031 1037 1043 -5.826602
## 42 1027 1033 1040 1044 -5.826177
## 43 1027 1034 1040 1043 -5.825908
## 44 1028 1031 1040 1042 -5.825505
## 45 1026 1032 1040 1043 -5.825061
## 46 1026 1033 1040 1042 -5.823777
## 47 1027 1033 1040 1041 -5.805192
## 48 1027 1031 1040 1043 -5.789613
## 49 1029 1035 1036 1042 -5.251301
## 50 1029 1035 1037 1041 -5.214670
## 51 1029 1032 1036 1045 -5.213476
## 52 1026 1035 1039 1042 -5.206071
## 53 1030 1032 1039 1041 -5.199912
## 54 1027 1035 1039 1041 -5.195244
## 55 1030 1031 1039 1042 -5.186668
## 56 1029 1032 1040 1041 -5.170284
## 57 1030 1034 1036 1042 -5.168899
## 58 1026 1032 1039 1045 -5.168465
## 59 1029 1031 1037 1045 -5.165148
## 60 1030 1032 1036 1044 -5.161803
## 61 1029 1031 1040 1042 -5.156784
## 62 1027 1035 1036 1044 -5.155613
## 63 1027 1031 1039 1045 -5.146903
## 64 1030 1034 1037 1041 -5.131450
## 65 1026 1035 1037 1044 -5.130977
## 66 1027 1034 1036 1045 -5.127348
## 67 1030 1031 1037 1044 -5.112757
## 68 1026 1034 1037 1045 -5.102779
## 69 1026 1034 1040 1042 -5.096091
## 70 1026 1032 1040 1044 -5.088332
## 71 1027 1034 1040 1041 -5.084501
## 72 1027 1031 1040 1044 -5.065938
## 73 1029 1033 1036 1042 -4.434082
## 74 1029 1031 1038 1042 -4.432915
## 75 1029 1032 1038 1041 -4.430208
## 76 1028 1031 1039 1042 -4.415847
## 77 1028 1032 1039 1041 -4.412631
## 78 1029 1032 1036 1043 -4.405513
## 79 1029 1033 1037 1041 -4.405467
## 80 1029 1031 1037 1043 -4.381131
## 81 1028 1034 1036 1042 -4.376436
## 82 1026 1033 1039 1042 -4.374303
## 83 1027 1033 1039 1041 -4.367195
## 84 1028 1032 1036 1044 -4.349511
## 85 1028 1034 1037 1041 -4.348239
## 86 1026 1032 1039 1043 -4.344340
## 87 1027 1031 1039 1043 -4.342572
## 88 1026 1034 1038 1042 -4.333840
## 89 1027 1034 1038 1041 -4.326583
## 90 1028 1031 1037 1044 -4.326530
## 91 1026 1032 1038 1044 -4.306005
## 92 1027 1031 1038 1044 -4.304605
## 93 1027 1033 1036 1044 -4.304519
## 94 1029 1033 1036 1045 -4.304489
## 95 1027 1034 1036 1043 -4.301859
## 96 1029 1035 1038 1041 -4.301289
## 97 1029 1035 1036 1043 -4.296825
## 98 1028 1035 1039 1041 -4.295904
## 99 1029 1031 1038 1045 -4.292952
## 100 1028 1031 1039 1045 -4.287696
## 101 1026 1033 1037 1044 -4.284830
## 102 1026 1034 1037 1043 -4.282201
## 103 1026 1033 1039 1045 -4.273499
## 104 1026 1035 1039 1043 -4.265870
## 105 1028 1035 1036 1044 -4.244515
## 106 1028 1034 1036 1045 -4.241291
## 107 1029 1033 1040 1041 -4.224922
## 108 1030 1033 1039 1041 -4.222213
## 109 1026 1035 1038 1044 -4.218484
## 110 1026 1034 1038 1045 -4.215300
## 111 1029 1031 1040 1043 -4.209660
## 112 1030 1031 1039 1043 -4.206887
## 113 1030 1033 1036 1044 -4.173196
## 114 1030 1034 1038 1041 -4.166109
## 115 1028 1034 1040 1041 -4.163908
## 116 1030 1031 1038 1044 -4.161992
## 117 1030 1034 1036 1043 -4.161909
## 118 1028 1031 1040 1044 -4.159809
## 119 1026 1033 1040 1044 -4.146483
## 120 1026 1034 1040 1043 -4.135442
connection)
hist(iterated_results_table$ΔAIC_fix, main = "Distribution of ΔAIC of the fixed model.")
hist(iterated_results_table$p_fix, main = "Distribution of p-values of the fixed model.")
model_stats_fixed = data.frame(
deltaAIC = mean(iterated_results_table$ΔAIC_fix),
p_value = mean(iterated_results_table$p_fix),
R2 = NA
)
model_stats_fixed %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -6.9 0.003 *** strong
results_table = fill.results.table(
results_table,
response_variable,
metaecosystem_type_i,
model_stats_full,
model_stats_fixed
)
metaecosystem_type_i = c("Medium-Medium meta-ecosystem",
"Medium-Medium isolated")
filtered_data = ds_metaecosystems %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
metaecosystem_type %in% metaecosystem_type_i)
plot.metaecos.points(filtered_data,
metaecosystem_type_i,
response_variable)
The p-values and ΔAIC of the connection are computed for all possible combinations of the isolated patches, creating a p-value and ΔAIC distributions. We keep as p-value and ΔAIC of the comparison the mean of such distributions.
If you see “Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel = ## 1e-15, : unused control arguments ignored”, Ignore it. It just means that you didn’t pass the control argument to the Nelder_Mead optimiser, so it uses the default.
# Compute stats for all patch combinations
isolated_combinations_sets_filtered = isolated_combinations_sets %>%
filter(disturbance == disturbance_global_input,
metaecosystem_type %in% metaecosystem_type_i)
n_sets = isolated_combinations_sets_filtered %>%
pull(set) %>%
max()
iterated_results_table = data.frame(
Response = as.character(NA),
Levels = as.character(NA),
ΔAIC_full = NA,
p_full = NA,
ΔR2_full = NA,
ΔAIC_fix = NA,
p_fix = NA,
ΔR2_fix = NA,
combination_set = NA,
system_nr_isolated_systems = as.character(NA)
) %>%
slice(-1)
for (set_input in 1:n_sets) {
system_nr_isolated_systems_input = isolated_combinations_sets_filtered %>%
filter(
metaecosystem_type %in% metaecosystem_type_i,
connection == "isolated",
set == set_input
) %>%
pull(system_nr)
filtered_data = ds_metaecosystems %>%
filter(
time_point >= first_time_point_model,
time_point <= last_time_point_model,
metaecosystem_type %in% metaecosystem_type_i,
connection == "connected" |
(connection == "isolated" &
system_nr %in% system_nr_isolated_systems_input)
)
null_model = lmer(
get(response_variable) ~
day +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = optimizer_input,
optCtrl = list(method = method_input))
)
full_model = lmer(
get(response_variable) ~
day +
connection +
connection:day +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = optimizer_input,
optCtrl = list(method = method_input))
)
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
reduced_model = lmer(
get(response_variable) ~
day +
connection +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = optimizer_input,
optCtrl = list(method = method_input))
)
model_stats_fixed = compute.model.stats(reduced_model,
null_model,
"mixed_model")
iterated_results_table = fill.results.table(
iterated_results_table,
response_variable,
metaecosystem_type_i,
model_stats_full,
model_stats_fixed
)
iterated_results_table$set[nrow(iterated_results_table)] = set_input
iterated_results_table$system_nr_isolated_systems[nrow(iterated_results_table)] = paste(system_nr_isolated_systems_input, collapse = " ")
}
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
connection and connection : day)
hist(iterated_results_table$ΔAIC_full, main = "Distribution of ΔAIC of the full model.")
hist(iterated_results_table$p_full, main = "Distribution of p-values of the full model.")
model_stats_full = data.frame(
deltaAIC = mean(iterated_results_table$ΔAIC_full),
p_value = mean(iterated_results_table$p_full),
R2 = NA
)
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 0.3 0.167 none
iterated_results_table %>%
select(system_nr_isolated_systems,
ΔAIC_full) %>%
arrange(ΔAIC_full)
## system_nr_isolated_systems ΔAIC_full
## 1 1056 1065 -0.62042593
## 2 1065 1056 -0.62042593
## 3 1058 1062 -0.49794844
## 4 1062 1058 -0.49794844
## 5 1056 1064 -0.26493674
## 6 1064 1056 -0.26493674
## 7 1059 1061 -0.20354500
## 8 1061 1059 -0.20354500
## 9 1057 1062 -0.19138169
## 10 1062 1057 -0.19138169
## 11 1057 1065 0.02135567
## 12 1065 1057 0.02135567
## 13 1058 1064 0.05043751
## 14 1064 1058 0.05043751
## 15 1059 1060 0.10548001
## 16 1060 1059 0.10548001
## 17 1059 1063 0.34923867
## 18 1063 1059 0.34923867
## 19 1060 1065 0.74571276
## 20 1065 1060 0.74571276
## 21 1061 1064 0.76203591
## 22 1064 1061 0.76203591
## 23 1062 1063 0.84585905
## 24 1063 1062 0.84585905
## 25 1058 1060 1.20377042
## 26 1060 1058 1.20377042
## 27 1057 1061 1.22459781
## 28 1061 1057 1.22459781
## 29 1056 1063 1.24283225
## 30 1063 1056 1.24283225
connection)
hist(iterated_results_table$ΔAIC_fix, main = "Distribution of ΔAIC of the fixed model.")
hist(iterated_results_table$p_fix, main = "Distribution of p-values of the fixed model.")
model_stats_fixed = data.frame(
deltaAIC = mean(iterated_results_table$ΔAIC_fix),
p_value = mean(iterated_results_table$p_fix),
R2 = NA
)
model_stats_fixed %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 0.9 0.356 none
results_table = fill.results.table(
results_table,
response_variable,
metaecosystem_type_i,
model_stats_full,
model_stats_fixed
)
response_variable = "mean_shannon"
metaecosystem_type_i = c("Medium-Medium meta-ecosystem",
"Medium-Medium isolated",
"Small-Large meta-ecosystem",
"Small-Large isolated")
plot.metaecos.points(ds_metaecosystems,
metaecosystem_type_i,
response_variable,
3)
plot.metaecos.boxplots(ds_metaecosystems,
metaecosystem_type_i,
response_variable)
plot.metaecos.replicates(ds_metaecosystems,
metaecosystem_type_i,
response_variable)
metaecosystem_type_i = c("Medium-Medium meta-ecosystem",
"Small-Large meta-ecosystem")
filtered_data = ds_metaecosystems %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
metaecosystem_type %in% metaecosystem_type_i)
plot.metaecos.points(filtered_data,
metaecosystem_type_i,
response_variable)
null_model = lmer(
get(response_variable) ~
day +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
patch_size_symmetry and
patch_size_symmetry : day)
full_model = lmer(
get(response_variable) ~
day +
patch_size_symmetry +
patch_size_symmetry : day +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood ['lmerMod']
## Formula:
## get(response_variable) ~ day + patch_size_symmetry + patch_size_symmetry:day +
## (day | system_nr)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## -0.4 16.4 8.2 -16.4 52
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.19 -0.58 0.02 0.63 2.23
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## system_nr (Intercept) 1e-03 0.032
## day 3e-05 0.006 -1.00
## Residual 4e-02 0.200
## Number of obs: 60, groups: system_nr, 10
##
## Fixed effects:
## Estimate Std. Error t value
## (Intercept) 1.621 0.104 16
## day -0.029 0.006 -5
## patch_size_symmetrysymmetric -0.202 0.147 -1
## day:patch_size_symmetrysymmetric 0.026 0.008 3
##
## Correlation of Fixed Effects:
## (Intr) day ptch__
## day -0.898
## ptch_sz_sym -0.707 0.635
## dy:ptch_sz_ 0.635 -0.707 -0.898
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" System nr: ", filtered_data$system_nr, "<br>",
"Day: ", filtered_data$day, "<br>",
"Meta-ecosystem: ", filtered_data$metaecosystem_type, "<br>",
"Tot Biomass: ", round(filtered_data$total_metaecosystem_bioarea_mm2, digits = 0), "<br>"),
hoverinfo = "text") %>%
plotly::layout(
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(full_model))
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -7.3 0.003 *** strong
patch_size_symmetry)
reduced_model = lmer(
get(response_variable) ~
day +
patch_size_symmetry +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood ['lmerMod']
## Formula: get(response_variable) ~ day + patch_size_symmetry + (day | system_nr)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 5.3 19.9 4.4 -8.7 53
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.12 -0.42 -0.05 0.66 2.05
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## system_nr (Intercept) 2e-02 0.14
## day 2e-04 0.01 -1.00
## Residual 4e-02 0.21
## Number of obs: 60, groups: system_nr, 10
##
## Fixed effects:
## Estimate Std. Error t value
## (Intercept) 1.428 0.093 15
## day -0.016 0.005 -3
## patch_size_symmetrysymmetric 0.184 0.064 3
##
## Correlation of Fixed Effects:
## (Intr) day
## day -0.871
## ptch_sz_sym -0.347 0.000
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" System nr: ", filtered_data$system_nr, "<br>",
"Day: ", filtered_data$day, "<br>",
"Meta-ecosystem: ", filtered_data$metaecosystem_type, "<br>",
"Tot Biomass: ", round(filtered_data$total_metaecosystem_bioarea_mm2, digits = 0), "<br>"),
hoverinfo = "text") %>%
plotly::layout(
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(reduced_model))
model_stats_fixed = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_fixed %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -1.7 0.056 * weak
results_table = fill.results.table(
results_table,
response_variable,
metaecosystem_type_i,
model_stats_full,
model_stats_fixed
)
metaecosystem_type_i = c("Small-Large meta-ecosystem",
"Small-Large isolated")
filtered_data = ds_metaecosystems %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
metaecosystem_type %in% metaecosystem_type_i)
plot.metaecos.points(filtered_data,
metaecosystem_type_i,
response_variable)
The p-values and ΔAIC of the connection are computed for all possible combinations of the isolated patches, creating a p-value and ΔAIC distributions. We keep as p-value and ΔAIC of the comparison the mean of such distributions.
If you see “Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel = ## 1e-15, : unused control arguments ignored”, Ignore it. It just means that you didn’t pass the control argument to the Nelder_Mead optimiser, so it uses the default.
# Compute stats for all patch combinations
isolated_combinations_sets_filtered = isolated_combinations_sets %>%
filter(disturbance == disturbance_global_input,
metaecosystem_type %in% metaecosystem_type_i)
n_sets = isolated_combinations_sets_filtered %>%
pull(set) %>%
max()
iterated_results_table = data.frame(
Response = as.character(NA),
Levels = as.character(NA),
ΔAIC_full = NA,
p_full = NA,
ΔR2_full = NA,
ΔAIC_fix = NA,
p_fix = NA,
ΔR2_fix = NA,
combination_set = NA,
system_nr_isolated_systems = as.character(NA)
) %>%
slice(-1)
for (set_input in 1:n_sets) {
system_nr_isolated_systems_input = isolated_combinations_sets_filtered %>%
filter(
metaecosystem_type %in% metaecosystem_type_i,
connection == "isolated",
set == set_input
) %>%
pull(system_nr)
filtered_data = ds_metaecosystems %>%
filter(
time_point >= first_time_point_model,
time_point <= last_time_point_model,
metaecosystem_type %in% metaecosystem_type_i,
connection == "connected" |
(connection == "isolated" &
system_nr %in% system_nr_isolated_systems_input)
)
null_model = lmer(
get(response_variable) ~
day +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = optimizer_input,
optCtrl = list(method = method_input))
)
full_model = lmer(
get(response_variable) ~
day +
connection +
connection:day +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = optimizer_input,
optCtrl = list(method = method_input))
)
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
reduced_model = lmer(
get(response_variable) ~
day +
connection +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = optimizer_input,
optCtrl = list(method = method_input))
)
model_stats_fixed = compute.model.stats(reduced_model,
null_model,
"mixed_model")
iterated_results_table = fill.results.table(
iterated_results_table,
response_variable,
metaecosystem_type_i,
model_stats_full,
model_stats_fixed
)
iterated_results_table$set[nrow(iterated_results_table)] = set_input
iterated_results_table$system_nr_isolated_systems[nrow(iterated_results_table)] = paste(system_nr_isolated_systems_input, collapse = " ")
}
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in checkConv(attr(opt, "derivs"), opt$par, ctrl = control$checkConv, :
## Model failed to converge with max|grad| = 0.00482332 (tol = 0.002, component 1)
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in checkConv(attr(opt, "derivs"), opt$par, ctrl = control$checkConv, :
## Model failed to converge with max|grad| = 0.0147445 (tol = 0.002, component 1)
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
connection and connection : day)
hist(iterated_results_table$ΔAIC_full, main = "Distribution of ΔAIC of the full model.")
hist(iterated_results_table$p_full, main = "Distribution of p-values of the full model.")
model_stats_full = data.frame(
deltaAIC = mean(iterated_results_table$ΔAIC_full),
p_value = mean(iterated_results_table$p_full),
R2 = NA
)
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -1.7 0.061 * weak
iterated_results_table %>%
select(system_nr_isolated_systems,
ΔAIC_full) %>%
arrange(ΔAIC_full)
## system_nr_isolated_systems ΔAIC_full
## 1 1030 1031 1037 1044 -3.2658662
## 2 1030 1031 1039 1042 -3.1902927
## 3 1026 1035 1037 1044 -3.1184539
## 4 1026 1035 1039 1042 -3.0498505
## 5 1029 1031 1040 1042 -2.9582525
## 6 1027 1031 1040 1044 -2.9161783
## 7 1029 1035 1036 1042 -2.8370408
## 8 1027 1035 1036 1044 -2.7773951
## 9 1026 1034 1040 1042 -2.7516252
## 10 1029 1031 1037 1045 -2.7318940
## 11 1030 1033 1037 1044 -2.7253151
## 12 1030 1034 1036 1042 -2.7137428
## 13 1030 1032 1036 1044 -2.7114029
## 14 1027 1031 1039 1045 -2.6823829
## 15 1030 1033 1039 1042 -2.6125976
## 16 1026 1032 1040 1044 -2.6074367
## 17 1028 1035 1037 1044 -2.5148704
## 18 1026 1033 1037 1044 -2.5148462
## 19 1026 1034 1037 1045 -2.5107510
## 20 1026 1032 1039 1045 -2.4777456
## 21 1028 1031 1037 1044 -2.4644361
## 22 1028 1035 1039 1042 -2.3997450
## 23 1029 1033 1040 1042 -2.3883546
## 24 1027 1033 1040 1044 -2.3422727
## 25 1026 1033 1039 1042 -2.3223480
## 26 1029 1035 1037 1041 -2.2911892
## 27 1028 1031 1039 1042 -2.2608060
## 28 1029 1033 1037 1045 -2.2388491
## 29 1027 1035 1039 1041 -2.2329835
## 30 1030 1034 1037 1041 -2.1858149
## 31 1030 1033 1036 1044 -2.1815047
## 32 1030 1032 1039 1041 -2.1812818
## 33 1029 1032 1036 1045 -2.1666678
## 34 1027 1034 1036 1045 -2.1360380
## 35 1027 1033 1036 1044 -2.1353277
## 36 1027 1033 1039 1045 -2.1347409
## 37 1028 1032 1040 1044 -2.1315380
## 38 1028 1034 1040 1042 -2.1114067
## 39 1029 1033 1036 1042 -2.1107839
## 40 1026 1033 1040 1044 -2.0926051
## 41 1029 1035 1038 1042 -2.0353298
## 42 1028 1031 1040 1044 -2.0241523
## 43 1028 1035 1036 1044 -1.9870485
## 44 1028 1032 1036 1044 -1.9830983
## 45 1028 1034 1037 1045 -1.9598801
## 46 1026 1033 1039 1045 -1.9486814
## 47 1029 1032 1040 1041 -1.9381692
## 48 1027 1035 1038 1044 -1.9306806
## 49 1030 1032 1038 1044 -1.9295017
## 50 1030 1034 1038 1042 -1.9220500
## 51 1028 1032 1039 1045 -1.9218019
## 52 1030 1031 1038 1044 -1.9169879
## 53 1027 1034 1040 1041 -1.9074780
## 54 1028 1031 1039 1045 -1.8794146
## 55 1027 1031 1038 1044 -1.8782998
## 56 1029 1031 1038 1042 -1.8673505
## 57 1028 1034 1036 1042 -1.8480452
## 58 1026 1035 1038 1044 -1.8019937
## 59 1029 1033 1037 1041 -1.7843168
## 60 1026 1032 1038 1044 -1.7648774
## 61 1030 1033 1039 1041 -1.7338144
## 62 1029 1033 1036 1045 -1.6803511
## 63 1026 1034 1038 1042 -1.6750491
## 64 1027 1033 1039 1041 -1.5668099
## 65 1028 1035 1039 1041 -1.5647583
## 66 1028 1032 1039 1041 -1.5639659
## 67 1030 1033 1036 1042 -1.5109156
## 68 1026 1033 1037 1045 -1.5017169
## 69 1029 1033 1040 1041 -1.4493556
## 70 1029 1032 1038 1045 -1.4477843
## 71 1026 1033 1040 1042 -1.4287577
## 72 1027 1034 1038 1045 -1.4224364
## 73 1028 1034 1036 1045 -1.4035177
## 74 1029 1031 1038 1045 -1.4007823
## 75 1028 1031 1037 1045 -1.3837852
## 76 1028 1031 1040 1042 -1.3837003
## 77 1028 1034 1037 1041 -1.3704474
## 78 1029 1035 1037 1043 -1.3447447
## 79 1028 1035 1036 1042 -1.3379690
## 80 1030 1031 1038 1042 -1.3160477
## 81 1027 1035 1039 1043 -1.2746212
## 82 1030 1032 1039 1043 -1.2667283
## 83 1030 1031 1039 1043 -1.2581718
## 84 1027 1031 1039 1043 -1.2407733
## 85 1030 1034 1037 1043 -1.2155303
## 86 1026 1034 1038 1045 -1.2151508
## 87 1026 1035 1038 1042 -1.2088780
## 88 1029 1031 1037 1043 -1.2066846
## 89 1030 1033 1037 1041 -1.2051259
## 90 1028 1034 1040 1041 -1.1992563
## 91 1026 1032 1039 1043 -1.1679179
## 92 1026 1035 1039 1043 -1.1632386
## 93 1027 1033 1036 1045 -1.1346786
## 94 1029 1035 1038 1041 -1.0874779
## 95 1029 1032 1038 1041 -1.0622404
## 96 1026 1034 1037 1043 -1.0577309
## 97 1029 1032 1040 1043 -1.0517986
## 98 1028 1035 1037 1041 -1.0447430
## 99 1029 1032 1036 1043 -1.0353358
## 100 1027 1034 1040 1043 -1.0231825
## 101 1027 1034 1038 1041 -1.0063826
## 102 1030 1034 1038 1041 -0.9975399
## 103 1029 1031 1040 1043 -0.9887564
## 104 1028 1032 1036 1045 -0.9522282
## 105 1027 1031 1038 1045 -0.9286757
## 106 1027 1033 1040 1041 -0.9069473
## 107 1029 1035 1036 1043 -0.8866580
## 108 1026 1034 1040 1043 -0.8337482
## 109 1027 1034 1036 1043 -0.8147813
## 110 1030 1034 1036 1043 -0.7999913
## 111 1030 1031 1037 1043 -0.7969388
## 112 1026 1032 1038 1045 -0.7962529
## 113 1028 1032 1040 1041 -0.7396395
## 114 1026 1035 1037 1043 -0.7119218
## 115 1027 1035 1038 1041 -0.6161209
## 116 1030 1032 1038 1041 -0.5240635
## 117 1027 1031 1040 1043 -0.5222448
## 118 1027 1035 1036 1043 -0.4430857
## 119 1026 1032 1040 1043 -0.4377593
## 120 1030 1032 1036 1043 -0.3648467
connection)
hist(iterated_results_table$ΔAIC_fix, main = "Distribution of ΔAIC of the fixed model.")
hist(iterated_results_table$p_fix, main = "Distribution of p-values of the fixed model.")
model_stats_fixed = data.frame(
deltaAIC = mean(iterated_results_table$ΔAIC_fix),
p_value = mean(iterated_results_table$p_fix),
R2 = NA
)
model_stats_fixed %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -3.6 0.019 ** moderate
results_table = fill.results.table(
results_table,
response_variable,
metaecosystem_type_i,
model_stats_full,
model_stats_fixed
)
metaecosystem_type_i = c("Medium-Medium meta-ecosystem",
"Medium-Medium isolated")
filtered_data = ds_metaecosystems %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
metaecosystem_type %in% metaecosystem_type_i)
plot.metaecos.points(filtered_data,
metaecosystem_type_i,
response_variable)
The p-values and ΔAIC of the connection are computed for all possible combinations of the isolated patches, creating a p-value and ΔAIC distributions. We keep as p-value and ΔAIC of the comparison the mean of such distributions.
If you see “Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel = ## 1e-15, : unused control arguments ignored”, Ignore it. It just means that you didn’t pass the control argument to the Nelder_Mead optimiser, so it uses the default.
# Compute stats for all patch combinations
isolated_combinations_sets_filtered = isolated_combinations_sets %>%
filter(disturbance == disturbance_global_input,
metaecosystem_type %in% metaecosystem_type_i)
n_sets = isolated_combinations_sets_filtered %>%
pull(set) %>%
max()
iterated_results_table = data.frame(
Response = as.character(NA),
Levels = as.character(NA),
ΔAIC_full = NA,
p_full = NA,
ΔR2_full = NA,
ΔAIC_fix = NA,
p_fix = NA,
ΔR2_fix = NA,
combination_set = NA,
system_nr_isolated_systems = as.character(NA)
) %>%
slice(-1)
for (set_input in 1:n_sets) {
system_nr_isolated_systems_input = isolated_combinations_sets_filtered %>%
filter(
metaecosystem_type %in% metaecosystem_type_i,
connection == "isolated",
set == set_input
) %>%
pull(system_nr)
filtered_data = ds_metaecosystems %>%
filter(
time_point >= first_time_point_model,
time_point <= last_time_point_model,
metaecosystem_type %in% metaecosystem_type_i,
connection == "connected" |
(connection == "isolated" &
system_nr %in% system_nr_isolated_systems_input)
)
null_model = lmer(
get(response_variable) ~
day +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = optimizer_input,
optCtrl = list(method = method_input))
)
full_model = lmer(
get(response_variable) ~
day +
connection +
connection:day +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = optimizer_input,
optCtrl = list(method = method_input))
)
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
reduced_model = lmer(
get(response_variable) ~
day +
connection +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = optimizer_input,
optCtrl = list(method = method_input))
)
model_stats_fixed = compute.model.stats(reduced_model,
null_model,
"mixed_model")
iterated_results_table = fill.results.table(
iterated_results_table,
response_variable,
metaecosystem_type_i,
model_stats_full,
model_stats_fixed
)
iterated_results_table$set[nrow(iterated_results_table)] = set_input
iterated_results_table$system_nr_isolated_systems[nrow(iterated_results_table)] = paste(system_nr_isolated_systems_input, collapse = " ")
}
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
connection and connection : day)
hist(iterated_results_table$ΔAIC_full, main = "Distribution of ΔAIC of the full model.")
hist(iterated_results_table$p_full, main = "Distribution of p-values of the full model.")
model_stats_full = data.frame(
deltaAIC = mean(iterated_results_table$ΔAIC_full),
p_value = mean(iterated_results_table$p_full),
R2 = NA
)
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 0.9 0.225 none
iterated_results_table %>%
select(system_nr_isolated_systems,
ΔAIC_full) %>%
arrange(ΔAIC_full)
## system_nr_isolated_systems ΔAIC_full
## 1 1058 1062 -0.4481346
## 2 1062 1058 -0.4481346
## 3 1056 1065 -0.4075034
## 4 1065 1056 -0.4075034
## 5 1059 1061 -0.1183263
## 6 1061 1059 -0.1183263
## 7 1057 1062 0.5109625
## 8 1062 1057 0.5109625
## 9 1057 1061 0.5707120
## 10 1061 1057 0.5707120
## 11 1056 1064 0.6454787
## 12 1064 1056 0.6454787
## 13 1059 1060 0.7472458
## 14 1060 1059 0.7472458
## 15 1057 1065 0.7630824
## 16 1065 1057 0.7630824
## 17 1058 1060 0.7757166
## 18 1060 1058 0.7757166
## 19 1056 1063 1.0166883
## 20 1063 1056 1.0166883
## 21 1058 1064 1.1140341
## 22 1064 1058 1.1140341
## 23 1059 1063 1.4921890
## 24 1063 1059 1.4921890
## 25 1060 1065 1.9526951
## 26 1065 1060 1.9526951
## 27 1061 1064 2.0178706
## 28 1064 1061 2.0178706
## 29 1062 1063 2.2088481
## 30 1063 1062 2.2088481
connection)
hist(iterated_results_table$ΔAIC_fix, main = "Distribution of ΔAIC of the fixed model.")
hist(iterated_results_table$p_fix, main = "Distribution of p-values of the fixed model.")
model_stats_fixed = data.frame(
deltaAIC = mean(iterated_results_table$ΔAIC_fix),
p_value = mean(iterated_results_table$p_fix),
R2 = NA
)
model_stats_fixed %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -0.6 0.115 none
results_table = fill.results.table(
results_table,
response_variable,
metaecosystem_type_i,
model_stats_full,
model_stats_fixed
)
response_variable = "bray_curtis"
metaecosystem_type_i = c("Medium-Medium meta-ecosystem",
"Medium-Medium isolated",
"Small-Large meta-ecosystem",
"Small-Large isolated")
plot.metaecos.points(ds_metaecosystems,
metaecosystem_type_i,
response_variable,
3)
plot.metaecos.boxplots(ds_metaecosystems,
metaecosystem_type_i,
response_variable)
plot.metaecos.replicates(ds_metaecosystems,
metaecosystem_type_i,
response_variable)
metaecosystem_type_i = c("Medium-Medium meta-ecosystem",
"Small-Large meta-ecosystem")
filtered_data = ds_metaecosystems %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
metaecosystem_type %in% metaecosystem_type_i)
plot.metaecos.points(filtered_data,
metaecosystem_type_i,
response_variable)
null_model = lmer(
get(response_variable) ~
day +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
patch_size_symmetry and
patch_size_symmetry : day)
full_model = lmer(
get(response_variable) ~
day +
patch_size_symmetry +
patch_size_symmetry : day +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood ['lmerMod']
## Formula:
## get(response_variable) ~ day + patch_size_symmetry + patch_size_symmetry:day +
## (day | system_nr)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## -63.4 -46.7 39.7 -79.4 52
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.22 -0.58 -0.02 0.47 1.95
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## system_nr (Intercept) 3e-04 0.018
## day 6e-06 0.002 1.00
## Residual 1e-02 0.114
## Number of obs: 60, groups: system_nr, 10
##
## Fixed effects:
## Estimate Std. Error t value
## (Intercept) 0.383 0.059 6.4
## day 0.017 0.003 5.3
## patch_size_symmetrysymmetric 0.009 0.084 0.1
## day:patch_size_symmetrysymmetric -0.013 0.005 -2.9
##
## Correlation of Fixed Effects:
## (Intr) day ptch__
## day -0.828
## ptch_sz_sym -0.707 0.586
## dy:ptch_sz_ 0.586 -0.707 -0.828
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" System nr: ", filtered_data$system_nr, "<br>",
"Day: ", filtered_data$day, "<br>",
"Meta-ecosystem: ", filtered_data$metaecosystem_type, "<br>",
"Tot Biomass: ", round(filtered_data$total_metaecosystem_bioarea_mm2, digits = 0), "<br>"),
hoverinfo = "text") %>%
plotly::layout(
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(full_model))
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -8.7 0.002 *** strong
patch_size_symmetry)
reduced_model = lmer(
get(response_variable) ~
day +
patch_size_symmetry +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood ['lmerMod']
## Formula: get(response_variable) ~ day + patch_size_symmetry + (day | system_nr)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## -58.5 -43.8 36.2 -72.5 53
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.5 -0.7 0.0 0.6 1.9
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## system_nr (Intercept) 1e-03 0.034
## day 3e-05 0.006 -1.00
## Residual 1e-02 0.119
## Number of obs: 60, groups: system_nr, 10
##
## Fixed effects:
## Estimate Std. Error t value
## (Intercept) 0.473 0.050 9
## day 0.011 0.003 4
## patch_size_symmetrysymmetric -0.171 0.045 -4
##
## Correlation of Fixed Effects:
## (Intr) day
## day -0.768
## ptch_sz_sym -0.453 0.000
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" System nr: ", filtered_data$system_nr, "<br>",
"Day: ", filtered_data$day, "<br>",
"Meta-ecosystem: ", filtered_data$metaecosystem_type, "<br>",
"Tot Biomass: ", round(filtered_data$total_metaecosystem_bioarea_mm2, digits = 0), "<br>"),
hoverinfo = "text") %>%
plotly::layout(
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(reduced_model))
model_stats_fixed = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_fixed %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -3.8 0.016 ** moderate
results_table = fill.results.table(
results_table,
response_variable,
metaecosystem_type_i,
model_stats_full,
model_stats_fixed
)
metaecosystem_type_i = c("Small-Large meta-ecosystem",
"Small-Large isolated")
filtered_data = ds_metaecosystems %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
metaecosystem_type %in% metaecosystem_type_i)
plot.metaecos.points(filtered_data,
metaecosystem_type_i,
response_variable)
The p-values and ΔAIC of the connection are computed for all possible combinations of the isolated patches, creating a p-value and ΔAIC distributions. We keep as p-value and ΔAIC of the comparison the mean of such distributions.
If you see “Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel = ## 1e-15, : unused control arguments ignored”, Ignore it. It just means that you didn’t pass the control argument to the Nelder_Mead optimiser, so it uses the default.
# Compute stats for all patch combinations
isolated_combinations_sets_filtered = isolated_combinations_sets %>%
filter(disturbance == disturbance_global_input,
metaecosystem_type %in% metaecosystem_type_i)
n_sets = isolated_combinations_sets_filtered %>%
pull(set) %>%
max()
iterated_results_table = data.frame(
Response = as.character(NA),
Levels = as.character(NA),
ΔAIC_full = NA,
p_full = NA,
ΔR2_full = NA,
ΔAIC_fix = NA,
p_fix = NA,
ΔR2_fix = NA,
combination_set = NA,
system_nr_isolated_systems = as.character(NA)
) %>%
slice(-1)
for (set_input in 1:n_sets) {
system_nr_isolated_systems_input = isolated_combinations_sets_filtered %>%
filter(
metaecosystem_type %in% metaecosystem_type_i,
connection == "isolated",
set == set_input
) %>%
pull(system_nr)
filtered_data = ds_metaecosystems %>%
filter(
time_point >= first_time_point_model,
time_point <= last_time_point_model,
metaecosystem_type %in% metaecosystem_type_i,
connection == "connected" |
(connection == "isolated" &
system_nr %in% system_nr_isolated_systems_input)
)
null_model = lmer(
get(response_variable) ~
day +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = optimizer_input,
optCtrl = list(method = method_input))
)
full_model = lmer(
get(response_variable) ~
day +
connection +
connection:day +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = optimizer_input,
optCtrl = list(method = method_input))
)
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
reduced_model = lmer(
get(response_variable) ~
day +
connection +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = optimizer_input,
optCtrl = list(method = method_input))
)
model_stats_fixed = compute.model.stats(reduced_model,
null_model,
"mixed_model")
iterated_results_table = fill.results.table(
iterated_results_table,
response_variable,
metaecosystem_type_i,
model_stats_full,
model_stats_fixed
)
iterated_results_table$set[nrow(iterated_results_table)] = set_input
iterated_results_table$system_nr_isolated_systems[nrow(iterated_results_table)] = paste(system_nr_isolated_systems_input, collapse = " ")
}
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in checkConv(attr(opt, "derivs"), opt$par, ctrl = control$checkConv, :
## Model failed to converge with max|grad| = 0.00397541 (tol = 0.002, component 1)
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in checkConv(attr(opt, "derivs"), opt$par, ctrl = control$checkConv, :
## Model failed to converge with max|grad| = 0.00280091 (tol = 0.002, component 1)
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in checkConv(attr(opt, "derivs"), opt$par, ctrl = control$checkConv, :
## Model failed to converge with max|grad| = 0.00259059 (tol = 0.002, component 1)
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in checkConv(attr(opt, "derivs"), opt$par, ctrl = control$checkConv, :
## Model failed to converge with max|grad| = 0.0111113 (tol = 0.002, component 1)
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in checkConv(attr(opt, "derivs"), opt$par, ctrl = control$checkConv, :
## Model failed to converge with max|grad| = 0.00233093 (tol = 0.002, component 1)
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
connection and connection : day)
hist(iterated_results_table$ΔAIC_full, main = "Distribution of ΔAIC of the full model.")
hist(iterated_results_table$p_full, main = "Distribution of p-values of the full model.")
model_stats_full = data.frame(
deltaAIC = mean(iterated_results_table$ΔAIC_full),
p_value = mean(iterated_results_table$p_full),
R2 = NA
)
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -3.3 0.027 ** moderate
iterated_results_table %>%
select(system_nr_isolated_systems,
ΔAIC_full) %>%
arrange(ΔAIC_full)
## system_nr_isolated_systems ΔAIC_full
## 1 1027 1033 1040 1044 -5.131031
## 2 1027 1034 1040 1043 -4.977195
## 3 1027 1034 1040 1041 -4.905636
## 4 1027 1031 1040 1044 -4.812797
## 5 1027 1033 1040 1041 -4.717979
## 6 1027 1034 1038 1041 -4.715167
## 7 1027 1034 1036 1045 -4.670136
## 8 1027 1035 1036 1044 -4.662253
## 9 1027 1033 1036 1044 -4.637807
## 10 1027 1034 1036 1043 -4.554477
## 11 1027 1031 1040 1043 -4.474211
## 12 1027 1033 1036 1045 -4.436319
## 13 1027 1033 1039 1045 -4.344398
## 14 1027 1035 1036 1043 -4.315984
## 15 1027 1035 1039 1043 -4.204646
## 16 1027 1035 1039 1041 -4.145796
## 17 1029 1032 1040 1043 -4.133475
## 18 1027 1033 1039 1041 -4.119206
## 19 1029 1032 1040 1041 -4.099971
## 20 1027 1031 1039 1045 -4.065356
## 21 1030 1032 1036 1044 -4.000025
## 22 1029 1033 1040 1041 -3.923811
## 23 1027 1031 1039 1043 -3.877826
## 24 1027 1035 1038 1044 -3.850639
## 25 1029 1032 1036 1045 -3.837177
## 26 1027 1034 1038 1045 -3.836793
## 27 1030 1033 1036 1044 -3.794418
## 28 1029 1031 1040 1043 -3.701014
## 29 1030 1032 1036 1043 -3.683937
## 30 1029 1032 1036 1043 -3.683740
## 31 1028 1032 1040 1044 -3.674511
## 32 1026 1032 1040 1044 -3.632629
## 33 1030 1034 1036 1043 -3.631710
## 34 1030 1032 1039 1043 -3.628881
## 35 1030 1032 1039 1041 -3.617396
## 36 1029 1033 1036 1045 -3.600168
## 37 1026 1033 1040 1044 -3.551073
## 38 1027 1031 1038 1044 -3.539664
## 39 1029 1033 1040 1042 -3.533412
## 40 1027 1035 1038 1041 -3.502220
## 41 1030 1033 1039 1041 -3.479676
## 42 1027 1031 1038 1045 -3.456072
## 43 1029 1035 1036 1043 -3.452945
## 44 1028 1031 1040 1044 -3.447980
## 45 1028 1032 1040 1041 -3.429058
## 46 1028 1034 1040 1041 -3.411945
## 47 1029 1031 1040 1042 -3.403523
## 48 1030 1033 1037 1044 -3.385498
## 49 1026 1032 1040 1043 -3.358420
## 50 1026 1034 1040 1043 -3.345094
## 51 1030 1032 1038 1044 -3.325410
## 52 1030 1031 1037 1044 -3.313350
## 53 1030 1031 1039 1043 -3.283020
## 54 1030 1034 1036 1042 -3.209263
## 55 1030 1034 1037 1041 -3.195463
## 56 1030 1033 1037 1041 -3.186302
## 57 1030 1033 1039 1042 -3.160470
## 58 1030 1033 1036 1042 -3.159552
## 59 1030 1034 1037 1043 -3.155227
## 60 1029 1032 1038 1045 -3.154626
## 61 1029 1033 1037 1045 -3.153191
## 62 1028 1034 1040 1042 -3.143799
## 63 1028 1031 1040 1042 -3.140252
## 64 1026 1033 1040 1042 -3.138249
## 65 1028 1032 1036 1044 -3.137845
## 66 1028 1032 1036 1045 -3.104180
## 67 1026 1034 1040 1042 -3.104065
## 68 1030 1031 1037 1043 -3.085122
## 69 1028 1035 1036 1044 -3.082182
## 70 1028 1032 1039 1045 -3.079951
## 71 1029 1031 1037 1045 -3.079872
## 72 1028 1034 1036 1045 -3.071368
## 73 1030 1031 1038 1044 -3.071277
## 74 1030 1031 1039 1042 -3.066697
## 75 1030 1032 1038 1041 -3.054198
## 76 1026 1032 1039 1045 -3.042656
## 77 1030 1034 1038 1041 -3.017531
## 78 1029 1035 1036 1042 -3.005537
## 79 1029 1035 1037 1041 -2.997568
## 80 1026 1033 1039 1045 -2.978107
## 81 1029 1033 1036 1042 -2.977804
## 82 1029 1035 1037 1043 -2.972028
## 83 1029 1032 1038 1041 -2.943027
## 84 1029 1033 1037 1041 -2.938318
## 85 1028 1031 1039 1045 -2.903679
## 86 1029 1031 1038 1045 -2.859475
## 87 1028 1035 1039 1041 -2.856092
## 88 1028 1032 1039 1041 -2.854888
## 89 1028 1031 1037 1045 -2.854281
## 90 1029 1035 1038 1041 -2.838835
## 91 1029 1031 1037 1043 -2.828815
## 92 1028 1035 1037 1044 -2.819852
## 93 1026 1032 1039 1043 -2.806642
## 94 1026 1033 1037 1045 -2.804241
## 95 1028 1034 1037 1045 -2.795984
## 96 1026 1035 1039 1043 -2.785781
## 97 1026 1035 1037 1044 -2.780723
## 98 1026 1034 1037 1045 -2.754030
## 99 1028 1031 1037 1044 -2.727819
## 100 1030 1034 1038 1042 -2.713690
## 101 1026 1033 1037 1044 -2.711566
## 102 1028 1035 1037 1041 -2.699511
## 103 1030 1031 1038 1042 -2.677046
## 104 1028 1035 1039 1042 -2.634773
## 105 1028 1035 1036 1042 -2.620015
## 106 1026 1035 1039 1042 -2.598459
## 107 1028 1034 1037 1041 -2.577819
## 108 1026 1035 1037 1043 -2.575947
## 109 1028 1034 1036 1042 -2.568613
## 110 1026 1032 1038 1045 -2.565685
## 111 1026 1035 1038 1044 -2.556292
## 112 1026 1032 1038 1044 -2.551427
## 113 1028 1031 1039 1042 -2.549840
## 114 1026 1033 1039 1042 -2.545385
## 115 1026 1034 1038 1045 -2.536037
## 116 1029 1035 1038 1042 -2.516755
## 117 1026 1034 1037 1043 -2.480185
## 118 1029 1031 1038 1042 -2.399991
## 119 1026 1035 1038 1042 -2.226465
## 120 1026 1034 1038 1042 -2.125076
connection)
hist(iterated_results_table$ΔAIC_fix, main = "Distribution of ΔAIC of the fixed model.")
hist(iterated_results_table$p_fix, main = "Distribution of p-values of the fixed model.")
model_stats_fixed = data.frame(
deltaAIC = mean(iterated_results_table$ΔAIC_fix),
p_value = mean(iterated_results_table$p_fix),
R2 = NA
)
model_stats_fixed %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -4.6 0.012 ** moderate
results_table = fill.results.table(
results_table,
response_variable,
metaecosystem_type_i,
model_stats_full,
model_stats_fixed
)
metaecosystem_type_i = c("Medium-Medium meta-ecosystem",
"Medium-Medium isolated")
filtered_data = ds_metaecosystems %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
metaecosystem_type %in% metaecosystem_type_i)
plot.metaecos.points(filtered_data,
metaecosystem_type_i,
response_variable)
The p-values and ΔAIC of the connection are computed for all possible combinations of the isolated patches, creating a p-value and ΔAIC distributions. We keep as p-value and ΔAIC of the comparison the mean of such distributions.
If you see “Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel = ## 1e-15, : unused control arguments ignored”, Ignore it. It just means that you didn’t pass the control argument to the Nelder_Mead optimiser, so it uses the default.
# Compute stats for all patch combinations
isolated_combinations_sets_filtered = isolated_combinations_sets %>%
filter(disturbance == disturbance_global_input,
metaecosystem_type %in% metaecosystem_type_i)
n_sets = isolated_combinations_sets_filtered %>%
pull(set) %>%
max()
iterated_results_table = data.frame(
Response = as.character(NA),
Levels = as.character(NA),
ΔAIC_full = NA,
p_full = NA,
ΔR2_full = NA,
ΔAIC_fix = NA,
p_fix = NA,
ΔR2_fix = NA,
combination_set = NA,
system_nr_isolated_systems = as.character(NA)
) %>%
slice(-1)
for (set_input in 1:n_sets) {
system_nr_isolated_systems_input = isolated_combinations_sets_filtered %>%
filter(
metaecosystem_type %in% metaecosystem_type_i,
connection == "isolated",
set == set_input
) %>%
pull(system_nr)
filtered_data = ds_metaecosystems %>%
filter(
time_point >= first_time_point_model,
time_point <= last_time_point_model,
metaecosystem_type %in% metaecosystem_type_i,
connection == "connected" |
(connection == "isolated" &
system_nr %in% system_nr_isolated_systems_input)
)
null_model = lmer(
get(response_variable) ~
day +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = optimizer_input,
optCtrl = list(method = method_input))
)
full_model = lmer(
get(response_variable) ~
day +
connection +
connection:day +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = optimizer_input,
optCtrl = list(method = method_input))
)
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
reduced_model = lmer(
get(response_variable) ~
day +
connection +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = optimizer_input,
optCtrl = list(method = method_input))
)
model_stats_fixed = compute.model.stats(reduced_model,
null_model,
"mixed_model")
iterated_results_table = fill.results.table(
iterated_results_table,
response_variable,
metaecosystem_type_i,
model_stats_full,
model_stats_fixed
)
iterated_results_table$set[nrow(iterated_results_table)] = set_input
iterated_results_table$system_nr_isolated_systems[nrow(iterated_results_table)] = paste(system_nr_isolated_systems_input, collapse = " ")
}
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in checkConv(attr(opt, "derivs"), opt$par, ctrl = control$checkConv, :
## Model failed to converge with max|grad| = 0.00222507 (tol = 0.002, component 1)
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in checkConv(attr(opt, "derivs"), opt$par, ctrl = control$checkConv, :
## Model failed to converge with max|grad| = 0.00222133 (tol = 0.002, component 1)
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in checkConv(attr(opt, "derivs"), opt$par, ctrl = control$checkConv, :
## Model failed to converge with max|grad| = 0.00222507 (tol = 0.002, component 1)
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in checkConv(attr(opt, "derivs"), opt$par, ctrl = control$checkConv, :
## Model failed to converge with max|grad| = 0.00222133 (tol = 0.002, component 1)
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
connection and connection : day)
hist(iterated_results_table$ΔAIC_full, main = "Distribution of ΔAIC of the full model.")
hist(iterated_results_table$p_full, main = "Distribution of p-values of the full model.")
model_stats_full = data.frame(
deltaAIC = mean(iterated_results_table$ΔAIC_full),
p_value = mean(iterated_results_table$p_full),
R2 = NA
)
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 2.1 0.469 none
iterated_results_table %>%
select(system_nr_isolated_systems,
ΔAIC_full) %>%
arrange(ΔAIC_full)
## system_nr_isolated_systems ΔAIC_full
## 1 1059 1061 -2.1634950
## 2 1061 1059 -2.1634950
## 3 1061 1064 0.3104198
## 4 1064 1061 0.3104198
## 5 1058 1062 0.6299275
## 6 1062 1058 0.6299275
## 7 1058 1064 1.4703315
## 8 1064 1058 1.4703315
## 9 1059 1060 1.8363618
## 10 1060 1059 1.8363618
## 11 1056 1065 2.3113527
## 12 1065 1056 2.3113527
## 13 1056 1064 2.4258678
## 14 1064 1056 2.4258678
## 15 1057 1062 2.8145259
## 16 1062 1057 2.8145259
## 17 1059 1063 2.9451644
## 18 1063 1059 2.9451644
## 19 1058 1060 2.9492200
## 20 1060 1058 2.9492200
## 21 1057 1061 2.9921157
## 22 1061 1057 2.9921157
## 23 1062 1063 3.0082645
## 24 1063 1062 3.0082645
## 25 1060 1065 3.1739693
## 26 1065 1060 3.1739693
## 27 1056 1063 3.3683048
## 28 1063 1056 3.3683048
## 29 1057 1065 3.5740379
## 30 1065 1057 3.5740379
connection)
hist(iterated_results_table$ΔAIC_fix, main = "Distribution of ΔAIC of the fixed model.")
hist(iterated_results_table$p_fix, main = "Distribution of p-values of the fixed model.")
model_stats_fixed = data.frame(
deltaAIC = mean(iterated_results_table$ΔAIC_fix),
p_value = mean(iterated_results_table$p_fix),
R2 = NA
)
model_stats_fixed %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 0.7 0.333 none
results_table = fill.results.table(
results_table,
response_variable,
metaecosystem_type_i,
model_stats_full,
model_stats_fixed
)
response_variable = "metaecosystem_richness"
metaecosystem_type_i = c("Medium-Medium meta-ecosystem",
"Medium-Medium isolated",
"Small-Large meta-ecosystem",
"Small-Large isolated")
plot.metaecos.points(ds_metaecosystems,
metaecosystem_type_i,
response_variable,
3)
plot.metaecos.boxplots(ds_metaecosystems,
metaecosystem_type_i,
response_variable)
plot.metaecos.replicates(ds_metaecosystems,
metaecosystem_type_i,
response_variable)
metaecosystem_type_i = c("Medium-Medium meta-ecosystem",
"Small-Large meta-ecosystem")
filtered_data = ds_metaecosystems %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
metaecosystem_type %in% metaecosystem_type_i)
plot.metaecos.points(filtered_data,
metaecosystem_type_i,
response_variable)
null_model = lmer(
get(response_variable) ~
day +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
patch_size_symmetry and
patch_size_symmetry : day)
full_model = lmer(
get(response_variable) ~
day +
patch_size_symmetry +
patch_size_symmetry : day +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood ['lmerMod']
## Formula:
## get(response_variable) ~ day + patch_size_symmetry + patch_size_symmetry:day +
## (day | system_nr)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 189.4 206.1 -86.7 173.4 52
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -1.92 -0.75 0.05 0.77 2.33
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## system_nr (Intercept) 0.236 0.49
## day 0.002 0.04 -1.00
## Residual 0.947 0.97
## Number of obs: 60, groups: system_nr, 10
##
## Fixed effects:
## Estimate Std. Error t value
## (Intercept) 8.276 0.546 15.2
## day -0.086 0.032 -2.7
## patch_size_symmetrysymmetric 0.838 0.772 1.1
## day:patch_size_symmetrysymmetric 0.007 0.045 0.2
##
## Correlation of Fixed Effects:
## (Intr) day ptch__
## day -0.931
## ptch_sz_sym -0.707 0.658
## dy:ptch_sz_ 0.658 -0.707 -0.931
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" System nr: ", filtered_data$system_nr, "<br>",
"Day: ", filtered_data$day, "<br>",
"Meta-ecosystem: ", filtered_data$metaecosystem_type, "<br>",
"Tot Biomass: ", round(filtered_data$total_metaecosystem_bioarea_mm2, digits = 0), "<br>"),
hoverinfo = "text") %>%
plotly::layout(
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(full_model))
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -4.5 0.014 ** moderate
patch_size_symmetry)
reduced_model = lmer(
get(response_variable) ~
day +
patch_size_symmetry +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood ['lmerMod']
## Formula: get(response_variable) ~ day + patch_size_symmetry + (day | system_nr)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 187.4 202.1 -86.7 173.4 53
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -1.91 -0.75 0.06 0.79 2.36
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## system_nr (Intercept) 0.238 0.49
## day 0.002 0.04 -1.00
## Residual 0.947 0.97
## Number of obs: 60, groups: system_nr, 10
##
## Fixed effects:
## Estimate Std. Error t value
## (Intercept) 8.22 0.41 20
## day -0.08 0.02 -4
## patch_size_symmetrysymmetric 0.95 0.28 3
##
## Correlation of Fixed Effects:
## (Intr) day
## day -0.874
## ptch_sz_sym -0.343 0.000
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" System nr: ", filtered_data$system_nr, "<br>",
"Day: ", filtered_data$day, "<br>",
"Meta-ecosystem: ", filtered_data$metaecosystem_type, "<br>",
"Tot Biomass: ", round(filtered_data$total_metaecosystem_bioarea_mm2, digits = 0), "<br>"),
hoverinfo = "text") %>%
plotly::layout(
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(reduced_model))
model_stats_fixed = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_fixed %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -6.5 0.004 *** strong
results_table = fill.results.table(
results_table,
response_variable,
metaecosystem_type_i,
model_stats_full,
model_stats_fixed
)
metaecosystem_type_i = c("Small-Large meta-ecosystem",
"Small-Large isolated")
filtered_data = ds_metaecosystems %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
metaecosystem_type %in% metaecosystem_type_i)
plot.metaecos.points(filtered_data,
metaecosystem_type_i,
response_variable)
The p-values and ΔAIC of the connection are computed for all possible combinations of the isolated patches, creating a p-value and ΔAIC distributions. We keep as p-value and ΔAIC of the comparison the mean of such distributions.
If you see “Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel = ## 1e-15, : unused control arguments ignored”, Ignore it. It just means that you didn’t pass the control argument to the Nelder_Mead optimiser, so it uses the default.
# Compute stats for all patch combinations
isolated_combinations_sets_filtered = isolated_combinations_sets %>%
filter(disturbance == disturbance_global_input,
metaecosystem_type %in% metaecosystem_type_i)
n_sets = isolated_combinations_sets_filtered %>%
pull(set) %>%
max()
iterated_results_table = data.frame(
Response = as.character(NA),
Levels = as.character(NA),
ΔAIC_full = NA,
p_full = NA,
ΔR2_full = NA,
ΔAIC_fix = NA,
p_fix = NA,
ΔR2_fix = NA,
combination_set = NA,
system_nr_isolated_systems = as.character(NA)
) %>%
slice(-1)
for (set_input in 1:n_sets) {
system_nr_isolated_systems_input = isolated_combinations_sets_filtered %>%
filter(
metaecosystem_type %in% metaecosystem_type_i,
connection == "isolated",
set == set_input
) %>%
pull(system_nr)
filtered_data = ds_metaecosystems %>%
filter(
time_point >= first_time_point_model,
time_point <= last_time_point_model,
metaecosystem_type %in% metaecosystem_type_i,
connection == "connected" |
(connection == "isolated" &
system_nr %in% system_nr_isolated_systems_input)
)
null_model = lmer(
get(response_variable) ~
day +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = optimizer_input,
optCtrl = list(method = method_input))
)
full_model = lmer(
get(response_variable) ~
day +
connection +
connection:day +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = optimizer_input,
optCtrl = list(method = method_input))
)
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
reduced_model = lmer(
get(response_variable) ~
day +
connection +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = optimizer_input,
optCtrl = list(method = method_input))
)
model_stats_fixed = compute.model.stats(reduced_model,
null_model,
"mixed_model")
iterated_results_table = fill.results.table(
iterated_results_table,
response_variable,
metaecosystem_type_i,
model_stats_full,
model_stats_fixed
)
iterated_results_table$set[nrow(iterated_results_table)] = set_input
iterated_results_table$system_nr_isolated_systems[nrow(iterated_results_table)] = paste(system_nr_isolated_systems_input, collapse = " ")
}
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
connection and connection : day)
hist(iterated_results_table$ΔAIC_full, main = "Distribution of ΔAIC of the full model.")
hist(iterated_results_table$p_full, main = "Distribution of p-values of the full model.")
model_stats_full = data.frame(
deltaAIC = mean(iterated_results_table$ΔAIC_full),
p_value = mean(iterated_results_table$p_full),
R2 = NA
)
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 2.2 0.449 none
iterated_results_table %>%
select(system_nr_isolated_systems,
ΔAIC_full) %>%
arrange(ΔAIC_full)
## system_nr_isolated_systems ΔAIC_full
## 1 1027 1031 1040 1043 0.1184054
## 2 1026 1032 1040 1043 0.4857987
## 3 1030 1032 1036 1043 0.5916539
## 4 1027 1035 1036 1043 0.5916539
## 5 1027 1033 1036 1045 0.6185128
## 6 1027 1033 1040 1041 0.6262096
## 7 1026 1035 1037 1043 0.8013854
## 8 1027 1031 1038 1045 0.8028149
## 9 1030 1031 1037 1043 0.8234183
## 10 1028 1032 1036 1045 0.8765712
## 11 1028 1032 1040 1041 0.9116171
## 12 1026 1033 1037 1045 0.9247340
## 13 1028 1031 1037 1045 0.9435650
## 14 1026 1032 1038 1045 0.9707246
## 15 1028 1031 1040 1042 1.0032662
## 16 1026 1033 1040 1042 1.0124658
## 17 1026 1035 1038 1042 1.0483023
## 18 1028 1035 1037 1041 1.0531285
## 19 1027 1035 1038 1041 1.1313847
## 20 1030 1032 1038 1041 1.1313847
## 21 1030 1031 1038 1042 1.1415923
## 22 1030 1033 1037 1041 1.1415923
## 23 1028 1035 1036 1042 1.1817598
## 24 1030 1033 1036 1042 1.2068920
## 25 1029 1031 1040 1043 1.4738514
## 26 1026 1033 1040 1044 1.6449245
## 27 1028 1031 1040 1044 1.6888776
## 28 1029 1033 1036 1045 1.6953488
## 29 1029 1035 1036 1043 1.6965544
## 30 1026 1035 1038 1044 1.7039081
## 31 1029 1033 1040 1041 1.7112135
## 32 1029 1031 1038 1045 1.7171764
## 33 1030 1033 1036 1044 1.7401448
## 34 1030 1031 1038 1044 1.7500094
## 35 1027 1033 1036 1044 1.7719847
## 36 1029 1032 1036 1043 1.8089431
## 37 1029 1035 1038 1041 1.8187599
## 38 1028 1035 1036 1044 1.8392635
## 39 1027 1031 1039 1043 1.8578998
## 40 1026 1034 1038 1045 1.9171187
## 41 1030 1031 1039 1043 1.9248196
## 42 1026 1034 1040 1043 1.9751176
## 43 1026 1035 1039 1043 2.0164777
## 44 1027 1031 1038 1044 2.0304657
## 45 1026 1033 1039 1045 2.0546512
## 46 1028 1032 1036 1044 2.0694046
## 47 1030 1034 1038 1041 2.0694600
## 48 1030 1034 1036 1043 2.0904245
## 49 1028 1031 1039 1045 2.0907961
## 50 1028 1034 1036 1045 2.1082731
## 51 1030 1033 1039 1041 2.1379006
## 52 1028 1034 1040 1041 2.1437119
## 53 1029 1031 1037 1043 2.1498037
## 54 1027 1033 1040 1044 2.1523181
## 55 1026 1032 1039 1043 2.1720464
## 56 1029 1032 1040 1043 2.1774126
## 57 1027 1033 1039 1041 2.1984253
## 58 1026 1033 1037 1044 2.2119163
## 59 1026 1032 1038 1044 2.2222913
## 60 1028 1035 1039 1041 2.2389915
## 61 1029 1033 1036 1042 2.2627048
## 62 1027 1034 1036 1043 2.2640377
## 63 1029 1032 1038 1041 2.2653341
## 64 1028 1031 1037 1044 2.2727205
## 65 1029 1031 1038 1042 2.2920731
## 66 1029 1033 1037 1041 2.2920731
## 67 1026 1034 1037 1043 2.4002606
## 68 1026 1034 1038 1042 2.4401378
## 69 1028 1032 1039 1041 2.4419863
## 70 1028 1032 1040 1044 2.4485679
## 71 1028 1034 1037 1041 2.5024721
## 72 1027 1033 1039 1045 2.5293857
## 73 1026 1033 1039 1042 2.5511370
## 74 1027 1035 1039 1043 2.5643376
## 75 1030 1032 1039 1043 2.5643376
## 76 1028 1031 1039 1042 2.5780819
## 77 1027 1034 1038 1041 2.5811953
## 78 1027 1034 1040 1043 2.5913595
## 79 1028 1034 1036 1042 2.6035722
## 80 1029 1032 1038 1045 2.6456581
## 81 1029 1033 1040 1042 2.6577686
## 82 1029 1035 1037 1043 2.6591291
## 83 1030 1032 1038 1044 2.6712469
## 84 1027 1035 1038 1044 2.6712469
## 85 1029 1033 1037 1045 2.6896263
## 86 1030 1033 1037 1044 2.7148934
## 87 1028 1035 1037 1044 2.7328657
## 88 1029 1035 1038 1042 2.7658189
## 89 1028 1032 1039 1045 2.7744574
## 90 1028 1034 1037 1045 2.8568194
## 91 1030 1034 1037 1043 2.8772512
## 92 1030 1034 1038 1042 2.9228228
## 93 1027 1034 1038 1045 2.9266862
## 94 1030 1033 1039 1042 2.9600778
## 95 1028 1034 1040 1042 2.9759999
## 96 1028 1035 1039 1042 3.0345699
## 97 1027 1031 1040 1044 3.0487703
## 98 1026 1034 1037 1045 3.2227518
## 99 1026 1035 1037 1044 3.2254653
## 100 1026 1032 1040 1044 3.2793631
## 101 1029 1032 1040 1041 3.3026595
## 102 1029 1032 1036 1045 3.3026595
## 103 1027 1031 1039 1045 3.3100834
## 104 1027 1035 1036 1044 3.3277203
## 105 1030 1032 1036 1044 3.3277203
## 106 1029 1035 1037 1041 3.3536689
## 107 1029 1031 1037 1045 3.3754843
## 108 1030 1034 1037 1041 3.3859468
## 109 1030 1031 1037 1044 3.3985584
## 110 1029 1031 1040 1042 3.4247298
## 111 1026 1032 1039 1045 3.4830031
## 112 1026 1034 1040 1042 3.4877050
## 113 1029 1035 1036 1042 3.5066722
## 114 1026 1035 1039 1042 3.5081735
## 115 1027 1034 1036 1045 3.5265898
## 116 1030 1032 1039 1041 3.5265898
## 117 1027 1035 1039 1041 3.5265898
## 118 1027 1034 1040 1041 3.5265898
## 119 1030 1031 1039 1042 3.5793863
## 120 1030 1034 1036 1042 3.5994587
connection)
hist(iterated_results_table$ΔAIC_fix, main = "Distribution of ΔAIC of the fixed model.")
hist(iterated_results_table$p_fix, main = "Distribution of p-values of the fixed model.")
model_stats_fixed = data.frame(
deltaAIC = mean(iterated_results_table$ΔAIC_fix),
p_value = mean(iterated_results_table$p_fix),
R2 = NA
)
model_stats_fixed %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 0.7 0.318 none
results_table = fill.results.table(
results_table,
response_variable,
metaecosystem_type_i,
model_stats_full,
model_stats_fixed
)
metaecosystem_type_i = c("Medium-Medium meta-ecosystem",
"Medium-Medium isolated")
filtered_data = ds_metaecosystems %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
metaecosystem_type %in% metaecosystem_type_i)
plot.metaecos.points(filtered_data,
metaecosystem_type_i,
response_variable)
The p-values and ΔAIC of the connection are computed for all possible combinations of the isolated patches, creating a p-value and ΔAIC distributions. We keep as p-value and ΔAIC of the comparison the mean of such distributions.
If you see “Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel = ## 1e-15, : unused control arguments ignored”, Ignore it. It just means that you didn’t pass the control argument to the Nelder_Mead optimiser, so it uses the default.
# Compute stats for all patch combinations
isolated_combinations_sets_filtered = isolated_combinations_sets %>%
filter(disturbance == disturbance_global_input,
metaecosystem_type %in% metaecosystem_type_i)
n_sets = isolated_combinations_sets_filtered %>%
pull(set) %>%
max()
iterated_results_table = data.frame(
Response = as.character(NA),
Levels = as.character(NA),
ΔAIC_full = NA,
p_full = NA,
ΔR2_full = NA,
ΔAIC_fix = NA,
p_fix = NA,
ΔR2_fix = NA,
combination_set = NA,
system_nr_isolated_systems = as.character(NA)
) %>%
slice(-1)
for (set_input in 1:n_sets) {
system_nr_isolated_systems_input = isolated_combinations_sets_filtered %>%
filter(
metaecosystem_type %in% metaecosystem_type_i,
connection == "isolated",
set == set_input
) %>%
pull(system_nr)
filtered_data = ds_metaecosystems %>%
filter(
time_point >= first_time_point_model,
time_point <= last_time_point_model,
metaecosystem_type %in% metaecosystem_type_i,
connection == "connected" |
(connection == "isolated" &
system_nr %in% system_nr_isolated_systems_input)
)
null_model = lmer(
get(response_variable) ~
day +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = optimizer_input,
optCtrl = list(method = method_input))
)
full_model = lmer(
get(response_variable) ~
day +
connection +
connection:day +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = optimizer_input,
optCtrl = list(method = method_input))
)
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
reduced_model = lmer(
get(response_variable) ~
day +
connection +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = optimizer_input,
optCtrl = list(method = method_input))
)
model_stats_fixed = compute.model.stats(reduced_model,
null_model,
"mixed_model")
iterated_results_table = fill.results.table(
iterated_results_table,
response_variable,
metaecosystem_type_i,
model_stats_full,
model_stats_fixed
)
iterated_results_table$set[nrow(iterated_results_table)] = set_input
iterated_results_table$system_nr_isolated_systems[nrow(iterated_results_table)] = paste(system_nr_isolated_systems_input, collapse = " ")
}
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
connection and connection : day)
hist(iterated_results_table$ΔAIC_full, main = "Distribution of ΔAIC of the full model.")
hist(iterated_results_table$p_full, main = "Distribution of p-values of the full model.")
model_stats_full = data.frame(
deltaAIC = mean(iterated_results_table$ΔAIC_full),
p_value = mean(iterated_results_table$p_full),
R2 = NA
)
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 2.8 0.576 none
iterated_results_table %>%
select(system_nr_isolated_systems,
ΔAIC_full) %>%
arrange(ΔAIC_full)
## system_nr_isolated_systems ΔAIC_full
## 1 1057 1062 1.295857
## 2 1062 1057 1.295857
## 3 1059 1060 1.891039
## 4 1060 1059 1.891039
## 5 1058 1062 2.005519
## 6 1062 1058 2.005519
## 7 1056 1064 2.007075
## 8 1064 1056 2.007075
## 9 1062 1063 2.635024
## 10 1063 1062 2.635024
## 11 1058 1064 2.758295
## 12 1064 1058 2.758295
## 13 1060 1065 2.918645
## 14 1065 1060 2.918645
## 15 1059 1061 3.032444
## 16 1059 1063 3.032444
## 17 1061 1059 3.032444
## 18 1063 1059 3.032444
## 19 1057 1065 3.102242
## 20 1065 1057 3.102242
## 21 1058 1060 3.125725
## 22 1060 1058 3.125725
## 23 1056 1065 3.199072
## 24 1065 1056 3.199072
## 25 1061 1064 3.286048
## 26 1064 1061 3.286048
## 27 1057 1061 3.772903
## 28 1061 1057 3.772903
## 29 1056 1063 3.782587
## 30 1063 1056 3.782587
connection)
hist(iterated_results_table$ΔAIC_fix, main = "Distribution of ΔAIC of the fixed model.")
hist(iterated_results_table$p_fix, main = "Distribution of p-values of the fixed model.")
model_stats_fixed = data.frame(
deltaAIC = mean(iterated_results_table$ΔAIC_fix),
p_value = mean(iterated_results_table$p_fix),
R2 = NA
)
model_stats_fixed %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 1.5 0.62 none
results_table = fill.results.table(
results_table,
response_variable,
metaecosystem_type_i,
model_stats_full,
model_stats_fixed
)
patch_type_i = c("Small isolated",
"Medium isolated",
"Large isolated",
"Small connected to small",
"Small connected to large",
"Medium connected to medium",
"Large connected to small",
"Large connected to large")
Richness
ds_patches %>%
filter(species_richness > 0,
patch_type == patch_type_i) %>%
ggplot(aes(x = species_richness,
y = bioarea_mm2_per_ml)) +
geom_point() +
xlim(0, length(protist_species))
for (patch_type in patch_type_i) {
plot.relationship.BEF(patch_type,
"species_richness") %>%
print()
}
Shannon
ds_patches %>%
filter(species_richness > 0,
patch_type == patch_type_i) %>%
ggplot(aes(x = shannon,
y = bioarea_mm2_per_ml)) +
geom_point()
for (patch_type in patch_type_i) {
plot.relationship.BEF(patch_type,
"shannon") %>%
print()
}
Evenness
ds_patches %>%
filter(species_richness > 0,
patch_type == patch_type_i) %>%
ggplot(aes(x = evenness_pielou,
y = bioarea_mm2_per_ml)) +
geom_point() +
xlim(0, 1)
## Warning: Removed 5 rows containing missing values (`geom_point()`).
for (patch_type in patch_type_i) {
plot.relationship.BEF(patch_type,
"evenness_pielou") %>%
print()
}
Pop dominance
for(species_input in protist_species_dominance){
print(ds_patches %>%
ggplot(aes(x = get(paste0(species_input)),
y = bioarea_mm2_per_ml)) +
geom_point() +
labs(x = paste0(species_input, "_dominance")))
}
## Warning: Removed 12 rows containing missing values (`geom_point()`).
## Warning: Removed 12 rows containing missing values (`geom_point()`).
## Warning: Removed 12 rows containing missing values (`geom_point()`).
## Warning: Removed 12 rows containing missing values (`geom_point()`).
## Warning: Removed 12 rows containing missing values (`geom_point()`).
## Warning: Removed 12 rows containing missing values (`geom_point()`).
## Warning: Removed 12 rows containing missing values (`geom_point()`).
## Warning: Removed 12 rows containing missing values (`geom_point()`).
## Warning: Removed 12 rows containing missing values (`geom_point()`).
## Warning: Removed 12 rows containing missing values (`geom_point()`).
## Warning: Removed 12 rows containing missing values (`geom_point()`).
for (patch_type in patch_type_i) {
plot.relationship.dominance.productivity(patch_type,
protist_species,
protist_species_dominance) %>%
print()
}
patch_type_i = c("Small isolated",
"Medium isolated",
"Large isolated")
response_variable = "bioarea_mm2_per_ml"
plot.patches.points(ds_patches,
patch_type_i,
response_variable)
plot.patches.boxplots(patch_type_i,
response_variable)
save_results_in_table = TRUE
filtered_data = ds_patches %>%
filter(
metaecosystem == "no",
time_point >= first_time_point_model,
time_point <= last_time_point_model,
!is.na(!!sym(response_variable))
)
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
patch_size_ml and
patch_size_ml : day)
full_model = lmer(
get(response_variable) ~
day +
patch_size_ml +
patch_size_ml : day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood ['lmerMod']
## Formula: get(response_variable) ~ day + patch_size_ml + patch_size_ml:day +
## (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 199.3 218.7 -91.6 183.3 76
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.47 -0.69 -0.09 0.57 2.46
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 5e-02 0.23
## day 1e-04 0.01 -1.00
## Residual 5e-01 0.72
## Number of obs: 84, groups: culture_ID, 14
##
## Fixed effects:
## Estimate Std. Error t value
## (Intercept) 0.946 0.505 2
## day -0.062 0.026 -2
## patch_size_ml 0.137 0.019 7
## day:patch_size_ml -0.003 0.001 -3
##
## Correlation of Fixed Effects:
## (Intr) day ptch__
## day -0.940
## patch_sz_ml -0.891 0.838
## dy:ptch_sz_ 0.838 -0.891 -0.940
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Patch Type: ", filtered_data$patch_type, "<br>",
"Biomass density: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>",
"Species richness: ", filtered_data$species_richness, "<br>"),
hoverinfo = "text") %>%
plotly::layout(
title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(full_model))
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -36.8 < 0.001 **** very strong
patch_size_ml)
reduced_model = lmer(
get(response_variable) ~
day +
patch_size_ml +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood ['lmerMod']
## Formula: get(response_variable) ~ day + patch_size_ml + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 203.5 220.5 -94.8 189.5 77
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.1 -0.7 -0.1 0.7 2.4
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 0.431 0.66
## day 0.001 0.04 -1.00
## Residual 0.513 0.72
## Number of obs: 84, groups: culture_ID, 14
##
## Fixed effects:
## Estimate Std. Error t value
## (Intercept) 2.142 0.321 7
## day -0.127 0.015 -9
## patch_size_ml 0.086 0.007 13
##
## Correlation of Fixed Effects:
## (Intr) day
## day -0.843
## patch_sz_ml -0.480 0.000
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Patch Type: ", filtered_data$patch_type, "<br>",
"Biomass density: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>",
"Species richness: ", filtered_data$species_richness, "<br>"),
hoverinfo = "text") %>%
plotly::layout(
title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(reduced_model))
model_stats_fixed = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_fixed %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -32.5 < 0.001 **** very strong
results_table = fill.results.table(results_table,
response_variable,
patch_type_i,
model_stats_full,
model_stats_fixed)
response_variable = "shannon"
plot.patches.points(ds_patches,
patch_type_i,
response_variable)
## Warning in qt(conf.interval/2 + 0.5, datac$N - 1): NaNs produced
plot.patches.boxplots(patch_type_i,
response_variable)
## Warning: Removed 6 rows containing non-finite values (`stat_boxplot()`).
save_results_in_table = TRUE
filtered_data = ds_patches %>%
filter(
metaecosystem == "no",
time_point >= first_time_point_model,
time_point <= last_time_point_model,
!is.na(!!sym(response_variable))
)
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
## Warning in qt(conf.interval/2 + 0.5, datac$N - 1): NaNs produced
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
patch_size_ml and
patch_size_ml : day)
full_model = lmer(
get(response_variable) ~
day +
patch_size_ml +
patch_size_ml : day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood ['lmerMod']
## Formula: get(response_variable) ~ day + patch_size_ml + patch_size_ml:day +
## (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 79.4 98.2 -31.7 63.4 70
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.1 -0.7 0.0 0.7 2.4
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 0e+00 0.000
## day 9e-05 0.009 NaN
## Residual 1e-01 0.334
## Number of obs: 78, groups: culture_ID, 14
##
## Fixed effects:
## Estimate Std. Error t value
## (Intercept) 1e+00 2e-01 5.8
## day -7e-02 2e-02 -4.4
## patch_size_ml -1e-03 9e-03 -0.1
## day:patch_size_ml 2e-03 5e-04 3.7
##
## Correlation of Fixed Effects:
## (Intr) day ptch__
## day -0.866
## patch_sz_ml -0.904 0.778
## dy:ptch_sz_ 0.792 -0.912 -0.860
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Patch Type: ", filtered_data$patch_type, "<br>",
"Biomass density: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>",
"Species richness: ", filtered_data$species_richness, "<br>"),
hoverinfo = "text") %>%
plotly::layout(
title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(full_model))
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -18.5 < 0.001 **** very strong
patch_size_ml)
reduced_model = lmer(
get(response_variable) ~
day +
patch_size_ml +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood ['lmerMod']
## Formula: get(response_variable) ~ day + patch_size_ml + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 84.8 101.3 -35.4 70.8 71
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.2 -0.6 -0.1 0.7 2.5
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 1e-01 0.34
## day 8e-04 0.03 -1.00
## Residual 1e-01 0.34
## Number of obs: 78, groups: culture_ID, 14
##
## Fixed effects:
## Estimate Std. Error t value
## (Intercept) 0.751 0.167 4
## day -0.017 0.010 -2
## patch_size_ml 0.027 0.004 7
##
## Correlation of Fixed Effects:
## (Intr) day
## day -0.786
## patch_sz_ml -0.542 -0.016
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Patch Type: ", filtered_data$patch_type, "<br>",
"Biomass density: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>",
"Species richness: ", filtered_data$species_richness, "<br>"),
hoverinfo = "text") %>%
plotly::layout(
title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(reduced_model))
model_stats_fixed = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_fixed %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -13.1 < 0.001 **** very strong
results_table = fill.results.table(results_table,
response_variable,
patch_type_i,
model_stats_full,
model_stats_fixed)
response_variable = "species_richness"
plot.patches.points(ds_patches,
patch_type_i,
response_variable)
plot.patches.boxplots(patch_type_i,
response_variable)
save_results_in_table = TRUE
filtered_data = ds_patches %>%
filter(
metaecosystem == "no",
time_point >= first_time_point_model,
time_point <= last_time_point_model,
!is.na(!!sym(response_variable))
)
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
patch_size_ml and
patch_size_ml : day)
full_model = lmer(
get(response_variable) ~
day +
patch_size_ml +
patch_size_ml : day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood ['lmerMod']
## Formula: get(response_variable) ~ day + patch_size_ml + patch_size_ml:day +
## (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 315.9 335.4 -150.0 299.9 76
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.06 -0.72 -0.04 0.68 2.29
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 2e-01 0.403
## day 3e-06 0.002 1.00
## Residual 2e+00 1.388
## Number of obs: 84, groups: culture_ID, 14
##
## Fixed effects:
## Estimate Std. Error t value
## (Intercept) 6.170 0.972 6.4
## day -0.282 0.049 -5.8
## patch_size_ml 0.034 0.037 0.9
## day:patch_size_ml 0.007 0.002 3.9
##
## Correlation of Fixed Effects:
## (Intr) day ptch__
## day -0.901
## patch_sz_ml -0.891 0.804
## dy:ptch_sz_ 0.804 -0.891 -0.901
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Patch Type: ", filtered_data$patch_type, "<br>",
"Biomass density: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>",
"Species richness: ", filtered_data$species_richness, "<br>"),
hoverinfo = "text") %>%
plotly::layout(
title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(full_model))
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -27.9 < 0.001 **** very strong
patch_size_ml)
reduced_model = lmer(
get(response_variable) ~
day +
patch_size_ml +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood ['lmerMod']
## Formula: get(response_variable) ~ day + patch_size_ml + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 326.4 343.4 -156.2 312.4 77
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -1.9 -0.7 -0.1 0.7 2.2
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 1.384 1.18
## day 0.004 0.06 -0.94
## Residual 2.110 1.45
## Number of obs: 84, groups: culture_ID, 14
##
## Fixed effects:
## Estimate Std. Error t value
## (Intercept) 3.17 0.66 5
## day -0.11 0.03 -4
## patch_size_ml 0.16 0.02 10
##
## Correlation of Fixed Effects:
## (Intr) day
## day -0.773
## patch_sz_ml -0.566 0.000
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Patch Type: ", filtered_data$patch_type, "<br>",
"Biomass density: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>",
"Species richness: ", filtered_data$species_richness, "<br>"),
hoverinfo = "text") %>%
plotly::layout(
title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(reduced_model))
model_stats_fixed = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_fixed %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -17.4 < 0.001 **** very strong
results_table = fill.results.table(results_table,
response_variable,
patch_type_i,
model_stats_full,
model_stats_fixed)
response_variable = "evenness_pielou"
plot.patches.points(ds_patches,
patch_type_i,
response_variable)
## Warning in qt(conf.interval/2 + 0.5, datac$N - 1): NaNs produced
plot.patches.boxplots(patch_type_i,
response_variable)
## Warning: Removed 10 rows containing non-finite values (`stat_boxplot()`).
save_results_in_table = TRUE
filtered_data = ds_patches %>%
filter(
metaecosystem == "no",
time_point >= first_time_point_model,
time_point <= last_time_point_model,
!is.na(!!sym(response_variable))
)
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
## Warning in qt(conf.interval/2 + 0.5, datac$N - 1): NaNs produced
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
patch_size_ml and
patch_size_ml : day)
full_model = lmer(
get(response_variable) ~
day +
patch_size_ml +
patch_size_ml : day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood ['lmerMod']
## Formula: get(response_variable) ~ day + patch_size_ml + patch_size_ml:day +
## (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## -38.1 -19.7 27.1 -54.1 66
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -3.6 -0.5 0.1 0.5 2.9
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 5e-02 0.22
## day 3e-04 0.02 -1.00
## Residual 2e-02 0.14
## Number of obs: 74, groups: culture_ID, 14
##
## Fixed effects:
## Estimate Std. Error t value
## (Intercept) 1e+00 2e-01 7
## day -4e-02 1e-02 -4
## patch_size_ml -1e-02 6e-03 -2
## day:patch_size_ml 1e-03 4e-04 3
##
## Correlation of Fixed Effects:
## (Intr) day ptch__
## day -0.963
## patch_sz_ml -0.897 0.864
## dy:ptch_sz_ 0.863 -0.896 -0.965
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Patch Type: ", filtered_data$patch_type, "<br>",
"Biomass density: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>",
"Species richness: ", filtered_data$species_richness, "<br>"),
hoverinfo = "text") %>%
plotly::layout(
title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(full_model))
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -11.6 < 0.001 **** very strong
patch_size_ml)
reduced_model = lmer(
get(response_variable) ~
day +
patch_size_ml +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood ['lmerMod']
## Formula: get(response_variable) ~ day + patch_size_ml + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## -31.7 -15.6 22.9 -45.7 67
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -3.6 -0.6 0.2 0.5 2.9
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 1e-01 0.33
## day 6e-04 0.02 -1.00
## Residual 2e-02 0.14
## Number of obs: 74, groups: culture_ID, 14
##
## Fixed effects:
## Estimate Std. Error t value
## (Intercept) 0.668 0.107 6
## day -0.008 0.007 -1
## patch_size_ml 0.006 0.002 4
##
## Correlation of Fixed Effects:
## (Intr) day
## day -0.905
## patch_sz_ml -0.381 -0.006
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Patch Type: ", filtered_data$patch_type, "<br>",
"Biomass density: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>",
"Species richness: ", filtered_data$species_richness, "<br>"),
hoverinfo = "text") %>%
plotly::layout(
title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(reduced_model))
model_stats_fixed = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_fixed %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -5.2 0.007 *** strong
results_table = fill.results.table(results_table,
response_variable,
patch_type_i,
model_stats_full,
model_stats_fixed)
response_variable = "median_body_area_µm2"
plot.patches.points(ds_patches,
patch_type_i,
response_variable)
## Warning in qt(conf.interval/2 + 0.5, datac$N - 1): NaNs produced
plot.patches.boxplots(patch_type_i,
response_variable)
## Warning: Removed 6 rows containing non-finite values (`stat_boxplot()`).
save_results_in_table = TRUE
filtered_data = ds_patches %>%
filter(
metaecosystem == "no",
time_point >= first_time_point_model,
time_point <= last_time_point_model,
!is.na(!!sym(response_variable))
)
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
## Warning in qt(conf.interval/2 + 0.5, datac$N - 1): NaNs produced
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
patch_size_ml and
patch_size_ml : day)
full_model = lmer(
get(response_variable) ~
day +
patch_size_ml +
patch_size_ml : day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood ['lmerMod']
## Formula: get(response_variable) ~ day + patch_size_ml + patch_size_ml:day +
## (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 1286.8 1305.6 -635.4 1270.8 70
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.9 -0.5 0.0 0.5 3.0
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 2e+05 402
## day 4e+00 2 -1.00
## Residual 6e+05 776
## Number of obs: 78, groups: culture_ID, 14
##
## Fixed effects:
## Estimate Std. Error t value
## (Intercept) 1985 620 3
## day 80 32 2
## patch_size_ml 41 23 2
## day:patch_size_ml -2 1 -2
##
## Correlation of Fixed Effects:
## (Intr) day ptch__
## day -0.872
## patch_sz_ml -0.902 0.781
## dy:ptch_sz_ 0.803 -0.914 -0.870
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Patch Type: ", filtered_data$patch_type, "<br>",
"Biomass density: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>",
"Species richness: ", filtered_data$species_richness, "<br>"),
hoverinfo = "text") %>%
plotly::layout(
title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(full_model))
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 0 0.133 none
patch_size_ml)
reduced_model = lmer(
get(response_variable) ~
day +
patch_size_ml +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood ['lmerMod']
## Formula: get(response_variable) ~ day + patch_size_ml + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 1288.8 1305.3 -637.4 1274.8 71
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -3.02 -0.31 0.07 0.49 2.91
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 2e+05 467
## day 2e+02 14 -0.59
## Residual 6e+05 790
## Number of obs: 78, groups: culture_ID, 14
##
## Fixed effects:
## Estimate Std. Error t value
## (Intercept) 3e+03 4e+02 7.8
## day 2e+01 1e+01 1.5
## patch_size_ml 9e-01 1e+01 0.1
##
## Correlation of Fixed Effects:
## (Intr) day
## day -0.586
## patch_sz_ml -0.684 -0.072
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Patch Type: ", filtered_data$patch_type, "<br>",
"Biomass density: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>",
"Species richness: ", filtered_data$species_richness, "<br>"),
hoverinfo = "text") %>%
plotly::layout(
title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(reduced_model))
model_stats_fixed = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_fixed %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 2 0.948 none
results_table = fill.results.table(results_table,
response_variable,
patch_type_i,
model_stats_full,
model_stats_fixed)
for(patch_type_i in patch_type_i){
print(patch_type_i)
p = ds_patches %>%
filter(patch_type == patch_type_i) %>%
group_by(day) %>%
summarise(
Ble = mean(Ble_indiv_per_ml_dominance, na.rm = TRUE),
# Ble_se = sd(Ble_indiv_per_ml_dominance, na.rm = TRUE) / sqrt(n()),
# Ble_ci = qt(c(0.025, 0.975), df = n() - 1) * Ble_se,
Cep = mean(Cep_indiv_per_ml_dominance, na.rm = TRUE),
Col = mean(Col_indiv_per_ml_dominance, na.rm = TRUE),
Eup = mean(Eup_indiv_per_ml_dominance, na.rm = TRUE),
Lox = mean(Lox_indiv_per_ml_dominance, na.rm = TRUE),
Pau = mean(Pau_indiv_per_ml_dominance, na.rm = TRUE),
Pca = mean(Pca_indiv_per_ml_dominance, na.rm = TRUE),
Spi = mean(Spi_indiv_per_ml_dominance, na.rm = TRUE),
Spi_te = mean(Spi_te_indiv_per_ml_dominance, na.rm = TRUE),
Tet = mean(Tet_indiv_per_ml_dominance, na.rm = TRUE)
) %>%
pivot_longer(Ble:Tet, names_to = "species", values_to = "species_indiv_per_ml") %>%
ggplot(aes(
x = day,
y = species_indiv_per_ml,
group = interaction(day, species),
color = species
)) +
geom_point(position = position_dodge(dodging),
size = treatment_points_size) +
geom_line(
aes(group = species),
position = position_dodge(dodging),
linewidth = treatment_lines_linewidth) +
labs(x = axis_names %>%
filter(variable == "day") %>%
pull(axis_name),
y = axis_names %>%
filter(variable == "dominance") %>%
pull(axis_name)) +
coord_cartesian(ylim = c(0, 100))
print(p)
}
## [1] "Small isolated"
## [1] "Medium isolated"
## [1] "Large isolated"
patch_type_i = c("Small isolated",
"Small connected to small",
"Small connected to large")
response_variable = "bioarea_mm2_per_ml"
plot.patches.points(ds_patches,
patch_type_i,
response_variable)
plot.patches.boxplots(patch_type_i,
response_variable)
save_results_in_table = TRUE
filtered_data = ds_patches %>%
filter(
metaecosystem == "no",
time_point >= first_time_point_model,
time_point <= last_time_point_model,
!is.na(!!sym(response_variable))
)
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
patch_size_ml and
patch_size_ml : day)
full_model = lmer(
get(response_variable) ~
day +
patch_size_ml +
patch_size_ml : day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood ['lmerMod']
## Formula: get(response_variable) ~ day + patch_size_ml + patch_size_ml:day +
## (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 199.3 218.7 -91.6 183.3 76
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.47 -0.69 -0.09 0.57 2.46
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 5e-02 0.23
## day 1e-04 0.01 -1.00
## Residual 5e-01 0.72
## Number of obs: 84, groups: culture_ID, 14
##
## Fixed effects:
## Estimate Std. Error t value
## (Intercept) 0.946 0.505 2
## day -0.062 0.026 -2
## patch_size_ml 0.137 0.019 7
## day:patch_size_ml -0.003 0.001 -3
##
## Correlation of Fixed Effects:
## (Intr) day ptch__
## day -0.940
## patch_sz_ml -0.891 0.838
## dy:ptch_sz_ 0.838 -0.891 -0.940
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Patch Type: ", filtered_data$patch_type, "<br>",
"Biomass density: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>",
"Species richness: ", filtered_data$species_richness, "<br>"),
hoverinfo = "text") %>%
plotly::layout(
title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(full_model))
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -36.8 < 0.001 **** very strong
patch_size_ml)
reduced_model = lmer(
get(response_variable) ~
day +
patch_size_ml +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood ['lmerMod']
## Formula: get(response_variable) ~ day + patch_size_ml + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 203.5 220.5 -94.8 189.5 77
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.1 -0.7 -0.1 0.7 2.4
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 0.431 0.66
## day 0.001 0.04 -1.00
## Residual 0.513 0.72
## Number of obs: 84, groups: culture_ID, 14
##
## Fixed effects:
## Estimate Std. Error t value
## (Intercept) 2.142 0.321 7
## day -0.127 0.015 -9
## patch_size_ml 0.086 0.007 13
##
## Correlation of Fixed Effects:
## (Intr) day
## day -0.843
## patch_sz_ml -0.480 0.000
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Patch Type: ", filtered_data$patch_type, "<br>",
"Biomass density: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>",
"Species richness: ", filtered_data$species_richness, "<br>"),
hoverinfo = "text") %>%
plotly::layout(
title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(reduced_model))
model_stats_fixed = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_fixed %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -32.5 < 0.001 **** very strong
results_table = fill.results.table(results_table,
response_variable,
patch_type_i,
model_stats_full,
model_stats_fixed)
response_variable = "shannon"
plot.patches.points(ds_patches,
patch_type_i,
response_variable)
## Warning in qt(conf.interval/2 + 0.5, datac$N - 1): NaNs produced
plot.patches.boxplots(patch_type_i,
response_variable)
## Warning: Removed 12 rows containing non-finite values (`stat_boxplot()`).
save_results_in_table = TRUE
filtered_data = ds_patches %>%
filter(
metaecosystem == "no",
time_point >= first_time_point_model,
time_point <= last_time_point_model,
!is.na(!!sym(response_variable))
)
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
## Warning in qt(conf.interval/2 + 0.5, datac$N - 1): NaNs produced
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
patch_size_ml and
patch_size_ml : day)
full_model = lmer(
get(response_variable) ~
day +
patch_size_ml +
patch_size_ml : day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood ['lmerMod']
## Formula: get(response_variable) ~ day + patch_size_ml + patch_size_ml:day +
## (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 79.4 98.2 -31.7 63.4 70
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.1 -0.7 0.0 0.7 2.4
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 0e+00 0.000
## day 9e-05 0.009 NaN
## Residual 1e-01 0.334
## Number of obs: 78, groups: culture_ID, 14
##
## Fixed effects:
## Estimate Std. Error t value
## (Intercept) 1e+00 2e-01 5.8
## day -7e-02 2e-02 -4.4
## patch_size_ml -1e-03 9e-03 -0.1
## day:patch_size_ml 2e-03 5e-04 3.7
##
## Correlation of Fixed Effects:
## (Intr) day ptch__
## day -0.866
## patch_sz_ml -0.904 0.778
## dy:ptch_sz_ 0.792 -0.912 -0.860
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Patch Type: ", filtered_data$patch_type, "<br>",
"Biomass density: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>",
"Species richness: ", filtered_data$species_richness, "<br>"),
hoverinfo = "text") %>%
plotly::layout(
title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(full_model))
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -18.5 < 0.001 **** very strong
patch_size_ml)
reduced_model = lmer(
get(response_variable) ~
day +
patch_size_ml +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood ['lmerMod']
## Formula: get(response_variable) ~ day + patch_size_ml + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 84.8 101.3 -35.4 70.8 71
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.2 -0.6 -0.1 0.7 2.5
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 1e-01 0.34
## day 8e-04 0.03 -1.00
## Residual 1e-01 0.34
## Number of obs: 78, groups: culture_ID, 14
##
## Fixed effects:
## Estimate Std. Error t value
## (Intercept) 0.751 0.167 4
## day -0.017 0.010 -2
## patch_size_ml 0.027 0.004 7
##
## Correlation of Fixed Effects:
## (Intr) day
## day -0.786
## patch_sz_ml -0.542 -0.016
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Patch Type: ", filtered_data$patch_type, "<br>",
"Biomass density: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>",
"Species richness: ", filtered_data$species_richness, "<br>"),
hoverinfo = "text") %>%
plotly::layout(
title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(reduced_model))
model_stats_fixed = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_fixed %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -13.1 < 0.001 **** very strong
results_table = fill.results.table(results_table,
response_variable,
patch_type_i,
model_stats_full,
model_stats_fixed)
response_variable = "species_richness"
plot.patches.points(ds_patches,
patch_type_i,
response_variable)
plot.patches.boxplots(patch_type_i,
response_variable)
save_results_in_table = TRUE
filtered_data = ds_patches %>%
filter(
metaecosystem == "no",
time_point >= first_time_point_model,
time_point <= last_time_point_model,
!is.na(!!sym(response_variable))
)
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
patch_size_ml and
patch_size_ml : day)
full_model = lmer(
get(response_variable) ~
day +
patch_size_ml +
patch_size_ml : day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood ['lmerMod']
## Formula: get(response_variable) ~ day + patch_size_ml + patch_size_ml:day +
## (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 315.9 335.4 -150.0 299.9 76
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.06 -0.72 -0.04 0.68 2.29
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 2e-01 0.403
## day 3e-06 0.002 1.00
## Residual 2e+00 1.388
## Number of obs: 84, groups: culture_ID, 14
##
## Fixed effects:
## Estimate Std. Error t value
## (Intercept) 6.170 0.972 6.4
## day -0.282 0.049 -5.8
## patch_size_ml 0.034 0.037 0.9
## day:patch_size_ml 0.007 0.002 3.9
##
## Correlation of Fixed Effects:
## (Intr) day ptch__
## day -0.901
## patch_sz_ml -0.891 0.804
## dy:ptch_sz_ 0.804 -0.891 -0.901
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Patch Type: ", filtered_data$patch_type, "<br>",
"Biomass density: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>",
"Species richness: ", filtered_data$species_richness, "<br>"),
hoverinfo = "text") %>%
plotly::layout(
title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(full_model))
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -27.9 < 0.001 **** very strong
patch_size_ml)
reduced_model = lmer(
get(response_variable) ~
day +
patch_size_ml +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood ['lmerMod']
## Formula: get(response_variable) ~ day + patch_size_ml + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 326.4 343.4 -156.2 312.4 77
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -1.9 -0.7 -0.1 0.7 2.2
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 1.384 1.18
## day 0.004 0.06 -0.94
## Residual 2.110 1.45
## Number of obs: 84, groups: culture_ID, 14
##
## Fixed effects:
## Estimate Std. Error t value
## (Intercept) 3.17 0.66 5
## day -0.11 0.03 -4
## patch_size_ml 0.16 0.02 10
##
## Correlation of Fixed Effects:
## (Intr) day
## day -0.773
## patch_sz_ml -0.566 0.000
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Patch Type: ", filtered_data$patch_type, "<br>",
"Biomass density: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>",
"Species richness: ", filtered_data$species_richness, "<br>"),
hoverinfo = "text") %>%
plotly::layout(
title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(reduced_model))
model_stats_fixed = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_fixed %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -17.4 < 0.001 **** very strong
results_table = fill.results.table(results_table,
response_variable,
patch_type_i,
model_stats_full,
model_stats_fixed)
response_variable = "evenness_pielou"
plot.patches.points(ds_patches,
patch_type_i,
response_variable)
## Warning in qt(conf.interval/2 + 0.5, datac$N - 1): NaNs produced
plot.patches.boxplots(patch_type_i,
response_variable)
## Warning: Removed 33 rows containing non-finite values (`stat_boxplot()`).
save_results_in_table = TRUE
filtered_data = ds_patches %>%
filter(
metaecosystem == "no",
time_point >= first_time_point_model,
time_point <= last_time_point_model,
!is.na(!!sym(response_variable))
)
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
## Warning in qt(conf.interval/2 + 0.5, datac$N - 1): NaNs produced
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
patch_size_ml and
patch_size_ml : day)
full_model = lmer(
get(response_variable) ~
day +
patch_size_ml +
patch_size_ml : day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood ['lmerMod']
## Formula: get(response_variable) ~ day + patch_size_ml + patch_size_ml:day +
## (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## -38.1 -19.7 27.1 -54.1 66
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -3.6 -0.5 0.1 0.5 2.9
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 5e-02 0.22
## day 3e-04 0.02 -1.00
## Residual 2e-02 0.14
## Number of obs: 74, groups: culture_ID, 14
##
## Fixed effects:
## Estimate Std. Error t value
## (Intercept) 1e+00 2e-01 7
## day -4e-02 1e-02 -4
## patch_size_ml -1e-02 6e-03 -2
## day:patch_size_ml 1e-03 4e-04 3
##
## Correlation of Fixed Effects:
## (Intr) day ptch__
## day -0.963
## patch_sz_ml -0.897 0.864
## dy:ptch_sz_ 0.863 -0.896 -0.965
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Patch Type: ", filtered_data$patch_type, "<br>",
"Biomass density: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>",
"Species richness: ", filtered_data$species_richness, "<br>"),
hoverinfo = "text") %>%
plotly::layout(
title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(full_model))
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -11.6 < 0.001 **** very strong
patch_size_ml)
reduced_model = lmer(
get(response_variable) ~
day +
patch_size_ml +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood ['lmerMod']
## Formula: get(response_variable) ~ day + patch_size_ml + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## -31.7 -15.6 22.9 -45.7 67
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -3.6 -0.6 0.2 0.5 2.9
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 1e-01 0.33
## day 6e-04 0.02 -1.00
## Residual 2e-02 0.14
## Number of obs: 74, groups: culture_ID, 14
##
## Fixed effects:
## Estimate Std. Error t value
## (Intercept) 0.668 0.107 6
## day -0.008 0.007 -1
## patch_size_ml 0.006 0.002 4
##
## Correlation of Fixed Effects:
## (Intr) day
## day -0.905
## patch_sz_ml -0.381 -0.006
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Patch Type: ", filtered_data$patch_type, "<br>",
"Biomass density: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>",
"Species richness: ", filtered_data$species_richness, "<br>"),
hoverinfo = "text") %>%
plotly::layout(
title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(reduced_model))
model_stats_fixed = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_fixed %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -5.2 0.007 *** strong
results_table = fill.results.table(results_table,
response_variable,
patch_type_i,
model_stats_full,
model_stats_fixed)
response_variable = "median_body_area_µm2"
plot.patches.points(ds_patches,
patch_type_i,
response_variable)
## Warning in qt(conf.interval/2 + 0.5, datac$N - 1): NaNs produced
plot.patches.boxplots(patch_type_i,
response_variable)
## Warning: Removed 12 rows containing non-finite values (`stat_boxplot()`).
save_results_in_table = TRUE
filtered_data = ds_patches %>%
filter(
metaecosystem == "no",
time_point >= first_time_point_model,
time_point <= last_time_point_model,
!is.na(!!sym(response_variable))
)
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
## Warning in qt(conf.interval/2 + 0.5, datac$N - 1): NaNs produced
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
patch_size_ml and
patch_size_ml : day)
full_model = lmer(
get(response_variable) ~
day +
patch_size_ml +
patch_size_ml : day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood ['lmerMod']
## Formula: get(response_variable) ~ day + patch_size_ml + patch_size_ml:day +
## (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 1286.8 1305.6 -635.4 1270.8 70
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.9 -0.5 0.0 0.5 3.0
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 2e+05 402
## day 4e+00 2 -1.00
## Residual 6e+05 776
## Number of obs: 78, groups: culture_ID, 14
##
## Fixed effects:
## Estimate Std. Error t value
## (Intercept) 1985 620 3
## day 80 32 2
## patch_size_ml 41 23 2
## day:patch_size_ml -2 1 -2
##
## Correlation of Fixed Effects:
## (Intr) day ptch__
## day -0.872
## patch_sz_ml -0.902 0.781
## dy:ptch_sz_ 0.803 -0.914 -0.870
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Patch Type: ", filtered_data$patch_type, "<br>",
"Biomass density: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>",
"Species richness: ", filtered_data$species_richness, "<br>"),
hoverinfo = "text") %>%
plotly::layout(
title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(full_model))
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 0 0.133 none
patch_size_ml)
reduced_model = lmer(
get(response_variable) ~
day +
patch_size_ml +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood ['lmerMod']
## Formula: get(response_variable) ~ day + patch_size_ml + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 1288.8 1305.3 -637.4 1274.8 71
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -3.02 -0.31 0.07 0.49 2.91
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 2e+05 467
## day 2e+02 14 -0.59
## Residual 6e+05 790
## Number of obs: 78, groups: culture_ID, 14
##
## Fixed effects:
## Estimate Std. Error t value
## (Intercept) 3e+03 4e+02 7.8
## day 2e+01 1e+01 1.5
## patch_size_ml 9e-01 1e+01 0.1
##
## Correlation of Fixed Effects:
## (Intr) day
## day -0.586
## patch_sz_ml -0.684 -0.072
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Patch Type: ", filtered_data$patch_type, "<br>",
"Biomass density: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>",
"Species richness: ", filtered_data$species_richness, "<br>"),
hoverinfo = "text") %>%
plotly::layout(
title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(reduced_model))
model_stats_fixed = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_fixed %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 2 0.948 none
results_table = fill.results.table(results_table,
response_variable,
patch_type_i,
model_stats_full,
model_stats_fixed)
for(patch_type_i in patch_type_i){
print(patch_type_i)
p = ds_patches %>%
filter(patch_type == patch_type_i) %>%
group_by(day) %>%
summarise(
Ble = mean(Ble_indiv_per_ml_dominance, na.rm = TRUE),
# Ble_se = sd(Ble_indiv_per_ml_dominance, na.rm = TRUE) / sqrt(n()),
# Ble_ci = qt(c(0.025, 0.975), df = n() - 1) * Ble_se,
Cep = mean(Cep_indiv_per_ml_dominance, na.rm = TRUE),
Col = mean(Col_indiv_per_ml_dominance, na.rm = TRUE),
Eup = mean(Eup_indiv_per_ml_dominance, na.rm = TRUE),
Lox = mean(Lox_indiv_per_ml_dominance, na.rm = TRUE),
Pau = mean(Pau_indiv_per_ml_dominance, na.rm = TRUE),
Pca = mean(Pca_indiv_per_ml_dominance, na.rm = TRUE),
Spi = mean(Spi_indiv_per_ml_dominance, na.rm = TRUE),
Spi_te = mean(Spi_te_indiv_per_ml_dominance, na.rm = TRUE),
Tet = mean(Tet_indiv_per_ml_dominance, na.rm = TRUE)
) %>%
pivot_longer(Ble:Tet, names_to = "species", values_to = "species_indiv_per_ml") %>%
ggplot(aes(
x = day,
y = species_indiv_per_ml,
group = interaction(day, species),
color = species
)) +
geom_point(position = position_dodge(dodging),
size = treatment_points_size) +
geom_line(
aes(group = species),
position = position_dodge(dodging),
linewidth = treatment_lines_linewidth) +
labs(x = axis_names %>%
filter(variable == "day") %>%
pull(axis_name),
y = axis_names %>%
filter(variable == "dominance") %>%
pull(axis_name)) +
coord_cartesian(ylim = c(0, 100))
print(p)
}
## [1] "Small isolated"
## [1] "Small connected to small"
## [1] "Small connected to large"
patch_type_i = c("Medium isolated",
"Medium connected to medium")
response_variable = "bioarea_mm2_per_ml"
plot.patches.points(ds_patches,
patch_type_i,
response_variable)
plot.patches.boxplots(patch_type_i,
response_variable)
save_results_in_table = TRUE
filtered_data = ds_patches %>%
filter(
metaecosystem == "no",
time_point >= first_time_point_model,
time_point <= last_time_point_model,
!is.na(!!sym(response_variable))
)
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
patch_size_ml and
patch_size_ml : day)
full_model = lmer(
get(response_variable) ~
day +
patch_size_ml +
patch_size_ml : day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood ['lmerMod']
## Formula: get(response_variable) ~ day + patch_size_ml + patch_size_ml:day +
## (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 199.3 218.7 -91.6 183.3 76
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.47 -0.69 -0.09 0.57 2.46
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 5e-02 0.23
## day 1e-04 0.01 -1.00
## Residual 5e-01 0.72
## Number of obs: 84, groups: culture_ID, 14
##
## Fixed effects:
## Estimate Std. Error t value
## (Intercept) 0.946 0.505 2
## day -0.062 0.026 -2
## patch_size_ml 0.137 0.019 7
## day:patch_size_ml -0.003 0.001 -3
##
## Correlation of Fixed Effects:
## (Intr) day ptch__
## day -0.940
## patch_sz_ml -0.891 0.838
## dy:ptch_sz_ 0.838 -0.891 -0.940
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Patch Type: ", filtered_data$patch_type, "<br>",
"Biomass density: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>",
"Species richness: ", filtered_data$species_richness, "<br>"),
hoverinfo = "text") %>%
plotly::layout(
title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(full_model))
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -36.8 < 0.001 **** very strong
patch_size_ml)
reduced_model = lmer(
get(response_variable) ~
day +
patch_size_ml +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood ['lmerMod']
## Formula: get(response_variable) ~ day + patch_size_ml + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 203.5 220.5 -94.8 189.5 77
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.1 -0.7 -0.1 0.7 2.4
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 0.431 0.66
## day 0.001 0.04 -1.00
## Residual 0.513 0.72
## Number of obs: 84, groups: culture_ID, 14
##
## Fixed effects:
## Estimate Std. Error t value
## (Intercept) 2.142 0.321 7
## day -0.127 0.015 -9
## patch_size_ml 0.086 0.007 13
##
## Correlation of Fixed Effects:
## (Intr) day
## day -0.843
## patch_sz_ml -0.480 0.000
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Patch Type: ", filtered_data$patch_type, "<br>",
"Biomass density: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>",
"Species richness: ", filtered_data$species_richness, "<br>"),
hoverinfo = "text") %>%
plotly::layout(
title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(reduced_model))
model_stats_fixed = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_fixed %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -32.5 < 0.001 **** very strong
results_table = fill.results.table(results_table,
response_variable,
patch_type_i,
model_stats_full,
model_stats_fixed)
response_variable = "shannon"
plot.patches.points(ds_patches,
patch_type_i,
response_variable)
plot.patches.boxplots(patch_type_i,
response_variable)
save_results_in_table = TRUE
filtered_data = ds_patches %>%
filter(
metaecosystem == "no",
time_point >= first_time_point_model,
time_point <= last_time_point_model,
!is.na(!!sym(response_variable))
)
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
patch_size_ml and
patch_size_ml : day)
full_model = lmer(
get(response_variable) ~
day +
patch_size_ml +
patch_size_ml : day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood ['lmerMod']
## Formula: get(response_variable) ~ day + patch_size_ml + patch_size_ml:day +
## (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 79.4 98.2 -31.7 63.4 70
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.1 -0.7 0.0 0.7 2.4
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 0e+00 0.000
## day 9e-05 0.009 NaN
## Residual 1e-01 0.334
## Number of obs: 78, groups: culture_ID, 14
##
## Fixed effects:
## Estimate Std. Error t value
## (Intercept) 1e+00 2e-01 5.8
## day -7e-02 2e-02 -4.4
## patch_size_ml -1e-03 9e-03 -0.1
## day:patch_size_ml 2e-03 5e-04 3.7
##
## Correlation of Fixed Effects:
## (Intr) day ptch__
## day -0.866
## patch_sz_ml -0.904 0.778
## dy:ptch_sz_ 0.792 -0.912 -0.860
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Patch Type: ", filtered_data$patch_type, "<br>",
"Biomass density: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>",
"Species richness: ", filtered_data$species_richness, "<br>"),
hoverinfo = "text") %>%
plotly::layout(
title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(full_model))
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -18.5 < 0.001 **** very strong
patch_size_ml)
reduced_model = lmer(
get(response_variable) ~
day +
patch_size_ml +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood ['lmerMod']
## Formula: get(response_variable) ~ day + patch_size_ml + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 84.8 101.3 -35.4 70.8 71
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.2 -0.6 -0.1 0.7 2.5
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 1e-01 0.34
## day 8e-04 0.03 -1.00
## Residual 1e-01 0.34
## Number of obs: 78, groups: culture_ID, 14
##
## Fixed effects:
## Estimate Std. Error t value
## (Intercept) 0.751 0.167 4
## day -0.017 0.010 -2
## patch_size_ml 0.027 0.004 7
##
## Correlation of Fixed Effects:
## (Intr) day
## day -0.786
## patch_sz_ml -0.542 -0.016
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Patch Type: ", filtered_data$patch_type, "<br>",
"Biomass density: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>",
"Species richness: ", filtered_data$species_richness, "<br>"),
hoverinfo = "text") %>%
plotly::layout(
title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(reduced_model))
model_stats_fixed = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_fixed %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -13.1 < 0.001 **** very strong
results_table = fill.results.table(results_table,
response_variable,
patch_type_i,
model_stats_full,
model_stats_fixed)
response_variable = "species_richness"
plot.patches.points(ds_patches,
patch_type_i,
response_variable)
plot.patches.boxplots(patch_type_i,
response_variable)
save_results_in_table = TRUE
filtered_data = ds_patches %>%
filter(
metaecosystem == "no",
time_point >= first_time_point_model,
time_point <= last_time_point_model,
!is.na(!!sym(response_variable))
)
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
patch_size_ml and
patch_size_ml : day)
full_model = lmer(
get(response_variable) ~
day +
patch_size_ml +
patch_size_ml : day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood ['lmerMod']
## Formula: get(response_variable) ~ day + patch_size_ml + patch_size_ml:day +
## (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 315.9 335.4 -150.0 299.9 76
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.06 -0.72 -0.04 0.68 2.29
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 2e-01 0.403
## day 3e-06 0.002 1.00
## Residual 2e+00 1.388
## Number of obs: 84, groups: culture_ID, 14
##
## Fixed effects:
## Estimate Std. Error t value
## (Intercept) 6.170 0.972 6.4
## day -0.282 0.049 -5.8
## patch_size_ml 0.034 0.037 0.9
## day:patch_size_ml 0.007 0.002 3.9
##
## Correlation of Fixed Effects:
## (Intr) day ptch__
## day -0.901
## patch_sz_ml -0.891 0.804
## dy:ptch_sz_ 0.804 -0.891 -0.901
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Patch Type: ", filtered_data$patch_type, "<br>",
"Biomass density: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>",
"Species richness: ", filtered_data$species_richness, "<br>"),
hoverinfo = "text") %>%
plotly::layout(
title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(full_model))
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -27.9 < 0.001 **** very strong
patch_size_ml)
reduced_model = lmer(
get(response_variable) ~
day +
patch_size_ml +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood ['lmerMod']
## Formula: get(response_variable) ~ day + patch_size_ml + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 326.4 343.4 -156.2 312.4 77
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -1.9 -0.7 -0.1 0.7 2.2
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 1.384 1.18
## day 0.004 0.06 -0.94
## Residual 2.110 1.45
## Number of obs: 84, groups: culture_ID, 14
##
## Fixed effects:
## Estimate Std. Error t value
## (Intercept) 3.17 0.66 5
## day -0.11 0.03 -4
## patch_size_ml 0.16 0.02 10
##
## Correlation of Fixed Effects:
## (Intr) day
## day -0.773
## patch_sz_ml -0.566 0.000
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Patch Type: ", filtered_data$patch_type, "<br>",
"Biomass density: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>",
"Species richness: ", filtered_data$species_richness, "<br>"),
hoverinfo = "text") %>%
plotly::layout(
title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(reduced_model))
model_stats_fixed = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_fixed %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -17.4 < 0.001 **** very strong
results_table = fill.results.table(results_table,
response_variable,
patch_type_i,
model_stats_full,
model_stats_fixed)
response_variable = "evenness_pielou"
plot.patches.points(ds_patches,
patch_type_i,
response_variable)
plot.patches.boxplots(patch_type_i,
response_variable)
save_results_in_table = TRUE
filtered_data = ds_patches %>%
filter(
metaecosystem == "no",
time_point >= first_time_point_model,
time_point <= last_time_point_model,
!is.na(!!sym(response_variable))
)
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
patch_size_ml and
patch_size_ml : day)
full_model = lmer(
get(response_variable) ~
day +
patch_size_ml +
patch_size_ml : day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood ['lmerMod']
## Formula: get(response_variable) ~ day + patch_size_ml + patch_size_ml:day +
## (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## -38.1 -19.7 27.1 -54.1 66
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -3.6 -0.5 0.1 0.5 2.9
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 5e-02 0.22
## day 3e-04 0.02 -1.00
## Residual 2e-02 0.14
## Number of obs: 74, groups: culture_ID, 14
##
## Fixed effects:
## Estimate Std. Error t value
## (Intercept) 1e+00 2e-01 7
## day -4e-02 1e-02 -4
## patch_size_ml -1e-02 6e-03 -2
## day:patch_size_ml 1e-03 4e-04 3
##
## Correlation of Fixed Effects:
## (Intr) day ptch__
## day -0.963
## patch_sz_ml -0.897 0.864
## dy:ptch_sz_ 0.863 -0.896 -0.965
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Patch Type: ", filtered_data$patch_type, "<br>",
"Biomass density: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>",
"Species richness: ", filtered_data$species_richness, "<br>"),
hoverinfo = "text") %>%
plotly::layout(
title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(full_model))
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -11.6 < 0.001 **** very strong
patch_size_ml)
reduced_model = lmer(
get(response_variable) ~
day +
patch_size_ml +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood ['lmerMod']
## Formula: get(response_variable) ~ day + patch_size_ml + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## -31.7 -15.6 22.9 -45.7 67
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -3.6 -0.6 0.2 0.5 2.9
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 1e-01 0.33
## day 6e-04 0.02 -1.00
## Residual 2e-02 0.14
## Number of obs: 74, groups: culture_ID, 14
##
## Fixed effects:
## Estimate Std. Error t value
## (Intercept) 0.668 0.107 6
## day -0.008 0.007 -1
## patch_size_ml 0.006 0.002 4
##
## Correlation of Fixed Effects:
## (Intr) day
## day -0.905
## patch_sz_ml -0.381 -0.006
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Patch Type: ", filtered_data$patch_type, "<br>",
"Biomass density: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>",
"Species richness: ", filtered_data$species_richness, "<br>"),
hoverinfo = "text") %>%
plotly::layout(
title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(reduced_model))
model_stats_fixed = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_fixed %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -5.2 0.007 *** strong
results_table = fill.results.table(results_table,
response_variable,
patch_type_i,
model_stats_full,
model_stats_fixed)
response_variable = "median_body_area_µm2"
plot.patches.points(ds_patches,
patch_type_i,
response_variable)
plot.patches.boxplots(patch_type_i,
response_variable)
save_results_in_table = TRUE
filtered_data = ds_patches %>%
filter(
metaecosystem == "no",
time_point >= first_time_point_model,
time_point <= last_time_point_model,
!is.na(!!sym(response_variable))
)
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
patch_size_ml and
patch_size_ml : day)
full_model = lmer(
get(response_variable) ~
day +
patch_size_ml +
patch_size_ml : day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood ['lmerMod']
## Formula: get(response_variable) ~ day + patch_size_ml + patch_size_ml:day +
## (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 1286.8 1305.6 -635.4 1270.8 70
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.9 -0.5 0.0 0.5 3.0
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 2e+05 402
## day 4e+00 2 -1.00
## Residual 6e+05 776
## Number of obs: 78, groups: culture_ID, 14
##
## Fixed effects:
## Estimate Std. Error t value
## (Intercept) 1985 620 3
## day 80 32 2
## patch_size_ml 41 23 2
## day:patch_size_ml -2 1 -2
##
## Correlation of Fixed Effects:
## (Intr) day ptch__
## day -0.872
## patch_sz_ml -0.902 0.781
## dy:ptch_sz_ 0.803 -0.914 -0.870
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Patch Type: ", filtered_data$patch_type, "<br>",
"Biomass density: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>",
"Species richness: ", filtered_data$species_richness, "<br>"),
hoverinfo = "text") %>%
plotly::layout(
title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(full_model))
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 0 0.133 none
patch_size_ml)
reduced_model = lmer(
get(response_variable) ~
day +
patch_size_ml +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood ['lmerMod']
## Formula: get(response_variable) ~ day + patch_size_ml + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 1288.8 1305.3 -637.4 1274.8 71
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -3.02 -0.31 0.07 0.49 2.91
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 2e+05 467
## day 2e+02 14 -0.59
## Residual 6e+05 790
## Number of obs: 78, groups: culture_ID, 14
##
## Fixed effects:
## Estimate Std. Error t value
## (Intercept) 3e+03 4e+02 7.8
## day 2e+01 1e+01 1.5
## patch_size_ml 9e-01 1e+01 0.1
##
## Correlation of Fixed Effects:
## (Intr) day
## day -0.586
## patch_sz_ml -0.684 -0.072
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Patch Type: ", filtered_data$patch_type, "<br>",
"Biomass density: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>",
"Species richness: ", filtered_data$species_richness, "<br>"),
hoverinfo = "text") %>%
plotly::layout(
title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(reduced_model))
model_stats_fixed = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_fixed %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 2 0.948 none
results_table = fill.results.table(results_table,
response_variable,
patch_type_i,
model_stats_full,
model_stats_fixed)
for(patch_type_i in patch_type_i){
print(patch_type_i)
p = ds_patches %>%
filter(patch_type == patch_type_i) %>%
group_by(day) %>%
summarise(
Ble = mean(Ble_indiv_per_ml_dominance, na.rm = TRUE),
# Ble_se = sd(Ble_indiv_per_ml_dominance, na.rm = TRUE) / sqrt(n()),
# Ble_ci = qt(c(0.025, 0.975), df = n() - 1) * Ble_se,
Cep = mean(Cep_indiv_per_ml_dominance, na.rm = TRUE),
Col = mean(Col_indiv_per_ml_dominance, na.rm = TRUE),
Eup = mean(Eup_indiv_per_ml_dominance, na.rm = TRUE),
Lox = mean(Lox_indiv_per_ml_dominance, na.rm = TRUE),
Pau = mean(Pau_indiv_per_ml_dominance, na.rm = TRUE),
Pca = mean(Pca_indiv_per_ml_dominance, na.rm = TRUE),
Spi = mean(Spi_indiv_per_ml_dominance, na.rm = TRUE),
Spi_te = mean(Spi_te_indiv_per_ml_dominance, na.rm = TRUE),
Tet = mean(Tet_indiv_per_ml_dominance, na.rm = TRUE)
) %>%
pivot_longer(Ble:Tet, names_to = "species", values_to = "species_indiv_per_ml") %>%
ggplot(aes(
x = day,
y = species_indiv_per_ml,
group = interaction(day, species),
color = species
)) +
geom_point(position = position_dodge(dodging),
size = treatment_points_size) +
geom_line(
aes(group = species),
position = position_dodge(dodging),
linewidth = treatment_lines_linewidth) +
labs(x = axis_names %>%
filter(variable == "day") %>%
pull(axis_name),
y = axis_names %>%
filter(variable == "dominance") %>%
pull(axis_name)) +
coord_cartesian(ylim = c(0, 100))
print(p)
}
## [1] "Medium isolated"
## [1] "Medium connected to medium"
patch_type_i = c("Large connected to large",
"Large connected to small",
"Large isolated")
response_variable = "bioarea_mm2_per_ml"
plot.patches.points(ds_patches,
patch_type_i,
response_variable)
plot.patches.boxplots(patch_type_i,
response_variable)
save_results_in_table = TRUE
filtered_data = ds_patches %>%
filter(
metaecosystem == "no",
time_point >= first_time_point_model,
time_point <= last_time_point_model,
!is.na(!!sym(response_variable))
)
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
patch_size_ml and
patch_size_ml : day)
full_model = lmer(
get(response_variable) ~
day +
patch_size_ml +
patch_size_ml : day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood ['lmerMod']
## Formula: get(response_variable) ~ day + patch_size_ml + patch_size_ml:day +
## (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 199.3 218.7 -91.6 183.3 76
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.47 -0.69 -0.09 0.57 2.46
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 5e-02 0.23
## day 1e-04 0.01 -1.00
## Residual 5e-01 0.72
## Number of obs: 84, groups: culture_ID, 14
##
## Fixed effects:
## Estimate Std. Error t value
## (Intercept) 0.946 0.505 2
## day -0.062 0.026 -2
## patch_size_ml 0.137 0.019 7
## day:patch_size_ml -0.003 0.001 -3
##
## Correlation of Fixed Effects:
## (Intr) day ptch__
## day -0.940
## patch_sz_ml -0.891 0.838
## dy:ptch_sz_ 0.838 -0.891 -0.940
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Patch Type: ", filtered_data$patch_type, "<br>",
"Biomass density: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>",
"Species richness: ", filtered_data$species_richness, "<br>"),
hoverinfo = "text") %>%
plotly::layout(
title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(full_model))
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -36.8 < 0.001 **** very strong
patch_size_ml)
reduced_model = lmer(
get(response_variable) ~
day +
patch_size_ml +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood ['lmerMod']
## Formula: get(response_variable) ~ day + patch_size_ml + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 203.5 220.5 -94.8 189.5 77
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.1 -0.7 -0.1 0.7 2.4
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 0.431 0.66
## day 0.001 0.04 -1.00
## Residual 0.513 0.72
## Number of obs: 84, groups: culture_ID, 14
##
## Fixed effects:
## Estimate Std. Error t value
## (Intercept) 2.142 0.321 7
## day -0.127 0.015 -9
## patch_size_ml 0.086 0.007 13
##
## Correlation of Fixed Effects:
## (Intr) day
## day -0.843
## patch_sz_ml -0.480 0.000
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Patch Type: ", filtered_data$patch_type, "<br>",
"Biomass density: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>",
"Species richness: ", filtered_data$species_richness, "<br>"),
hoverinfo = "text") %>%
plotly::layout(
title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(reduced_model))
model_stats_fixed = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_fixed %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -32.5 < 0.001 **** very strong
results_table = fill.results.table(results_table,
response_variable,
patch_type_i,
model_stats_full,
model_stats_fixed)
response_variable = "shannon"
plot.patches.points(ds_patches,
patch_type_i,
response_variable)
plot.patches.boxplots(patch_type_i,
response_variable)
save_results_in_table = TRUE
filtered_data = ds_patches %>%
filter(
metaecosystem == "no",
time_point >= first_time_point_model,
time_point <= last_time_point_model,
!is.na(!!sym(response_variable))
)
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
patch_size_ml and
patch_size_ml : day)
full_model = lmer(
get(response_variable) ~
day +
patch_size_ml +
patch_size_ml : day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood ['lmerMod']
## Formula: get(response_variable) ~ day + patch_size_ml + patch_size_ml:day +
## (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 79.4 98.2 -31.7 63.4 70
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.1 -0.7 0.0 0.7 2.4
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 0e+00 0.000
## day 9e-05 0.009 NaN
## Residual 1e-01 0.334
## Number of obs: 78, groups: culture_ID, 14
##
## Fixed effects:
## Estimate Std. Error t value
## (Intercept) 1e+00 2e-01 5.8
## day -7e-02 2e-02 -4.4
## patch_size_ml -1e-03 9e-03 -0.1
## day:patch_size_ml 2e-03 5e-04 3.7
##
## Correlation of Fixed Effects:
## (Intr) day ptch__
## day -0.866
## patch_sz_ml -0.904 0.778
## dy:ptch_sz_ 0.792 -0.912 -0.860
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Patch Type: ", filtered_data$patch_type, "<br>",
"Biomass density: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>",
"Species richness: ", filtered_data$species_richness, "<br>"),
hoverinfo = "text") %>%
plotly::layout(
title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(full_model))
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -18.5 < 0.001 **** very strong
patch_size_ml)
reduced_model = lmer(
get(response_variable) ~
day +
patch_size_ml +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood ['lmerMod']
## Formula: get(response_variable) ~ day + patch_size_ml + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 84.8 101.3 -35.4 70.8 71
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.2 -0.6 -0.1 0.7 2.5
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 1e-01 0.34
## day 8e-04 0.03 -1.00
## Residual 1e-01 0.34
## Number of obs: 78, groups: culture_ID, 14
##
## Fixed effects:
## Estimate Std. Error t value
## (Intercept) 0.751 0.167 4
## day -0.017 0.010 -2
## patch_size_ml 0.027 0.004 7
##
## Correlation of Fixed Effects:
## (Intr) day
## day -0.786
## patch_sz_ml -0.542 -0.016
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Patch Type: ", filtered_data$patch_type, "<br>",
"Biomass density: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>",
"Species richness: ", filtered_data$species_richness, "<br>"),
hoverinfo = "text") %>%
plotly::layout(
title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(reduced_model))
model_stats_fixed = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_fixed %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -13.1 < 0.001 **** very strong
results_table = fill.results.table(results_table,
response_variable,
patch_type_i,
model_stats_full,
model_stats_fixed)
response_variable = "species_richness"
plot.patches.points(ds_patches,
patch_type_i,
response_variable)
plot.patches.boxplots(patch_type_i,
response_variable)
save_results_in_table = TRUE
filtered_data = ds_patches %>%
filter(
metaecosystem == "no",
time_point >= first_time_point_model,
time_point <= last_time_point_model,
!is.na(!!sym(response_variable))
)
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
patch_size_ml and
patch_size_ml : day)
full_model = lmer(
get(response_variable) ~
day +
patch_size_ml +
patch_size_ml : day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood ['lmerMod']
## Formula: get(response_variable) ~ day + patch_size_ml + patch_size_ml:day +
## (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 315.9 335.4 -150.0 299.9 76
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.06 -0.72 -0.04 0.68 2.29
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 2e-01 0.403
## day 3e-06 0.002 1.00
## Residual 2e+00 1.388
## Number of obs: 84, groups: culture_ID, 14
##
## Fixed effects:
## Estimate Std. Error t value
## (Intercept) 6.170 0.972 6.4
## day -0.282 0.049 -5.8
## patch_size_ml 0.034 0.037 0.9
## day:patch_size_ml 0.007 0.002 3.9
##
## Correlation of Fixed Effects:
## (Intr) day ptch__
## day -0.901
## patch_sz_ml -0.891 0.804
## dy:ptch_sz_ 0.804 -0.891 -0.901
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Patch Type: ", filtered_data$patch_type, "<br>",
"Biomass density: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>",
"Species richness: ", filtered_data$species_richness, "<br>"),
hoverinfo = "text") %>%
plotly::layout(
title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(full_model))
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -27.9 < 0.001 **** very strong
patch_size_ml)
reduced_model = lmer(
get(response_variable) ~
day +
patch_size_ml +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood ['lmerMod']
## Formula: get(response_variable) ~ day + patch_size_ml + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 326.4 343.4 -156.2 312.4 77
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -1.9 -0.7 -0.1 0.7 2.2
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 1.384 1.18
## day 0.004 0.06 -0.94
## Residual 2.110 1.45
## Number of obs: 84, groups: culture_ID, 14
##
## Fixed effects:
## Estimate Std. Error t value
## (Intercept) 3.17 0.66 5
## day -0.11 0.03 -4
## patch_size_ml 0.16 0.02 10
##
## Correlation of Fixed Effects:
## (Intr) day
## day -0.773
## patch_sz_ml -0.566 0.000
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Patch Type: ", filtered_data$patch_type, "<br>",
"Biomass density: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>",
"Species richness: ", filtered_data$species_richness, "<br>"),
hoverinfo = "text") %>%
plotly::layout(
title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(reduced_model))
model_stats_fixed = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_fixed %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -17.4 < 0.001 **** very strong
results_table = fill.results.table(results_table,
response_variable,
patch_type_i,
model_stats_full,
model_stats_fixed)
response_variable = "evenness_pielou"
plot.patches.points(ds_patches,
patch_type_i,
response_variable)
plot.patches.boxplots(patch_type_i,
response_variable)
save_results_in_table = TRUE
filtered_data = ds_patches %>%
filter(
metaecosystem == "no",
time_point >= first_time_point_model,
time_point <= last_time_point_model,
!is.na(!!sym(response_variable))
)
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
patch_size_ml and
patch_size_ml : day)
full_model = lmer(
get(response_variable) ~
day +
patch_size_ml +
patch_size_ml : day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood ['lmerMod']
## Formula: get(response_variable) ~ day + patch_size_ml + patch_size_ml:day +
## (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## -38.1 -19.7 27.1 -54.1 66
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -3.6 -0.5 0.1 0.5 2.9
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 5e-02 0.22
## day 3e-04 0.02 -1.00
## Residual 2e-02 0.14
## Number of obs: 74, groups: culture_ID, 14
##
## Fixed effects:
## Estimate Std. Error t value
## (Intercept) 1e+00 2e-01 7
## day -4e-02 1e-02 -4
## patch_size_ml -1e-02 6e-03 -2
## day:patch_size_ml 1e-03 4e-04 3
##
## Correlation of Fixed Effects:
## (Intr) day ptch__
## day -0.963
## patch_sz_ml -0.897 0.864
## dy:ptch_sz_ 0.863 -0.896 -0.965
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Patch Type: ", filtered_data$patch_type, "<br>",
"Biomass density: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>",
"Species richness: ", filtered_data$species_richness, "<br>"),
hoverinfo = "text") %>%
plotly::layout(
title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(full_model))
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -11.6 < 0.001 **** very strong
patch_size_ml)
reduced_model = lmer(
get(response_variable) ~
day +
patch_size_ml +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood ['lmerMod']
## Formula: get(response_variable) ~ day + patch_size_ml + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## -31.7 -15.6 22.9 -45.7 67
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -3.6 -0.6 0.2 0.5 2.9
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 1e-01 0.33
## day 6e-04 0.02 -1.00
## Residual 2e-02 0.14
## Number of obs: 74, groups: culture_ID, 14
##
## Fixed effects:
## Estimate Std. Error t value
## (Intercept) 0.668 0.107 6
## day -0.008 0.007 -1
## patch_size_ml 0.006 0.002 4
##
## Correlation of Fixed Effects:
## (Intr) day
## day -0.905
## patch_sz_ml -0.381 -0.006
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Patch Type: ", filtered_data$patch_type, "<br>",
"Biomass density: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>",
"Species richness: ", filtered_data$species_richness, "<br>"),
hoverinfo = "text") %>%
plotly::layout(
title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(reduced_model))
model_stats_fixed = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_fixed %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -5.2 0.007 *** strong
results_table = fill.results.table(results_table,
response_variable,
patch_type_i,
model_stats_full,
model_stats_fixed)
response_variable = "median_body_area_µm2"
plot.patches.points(ds_patches,
patch_type_i,
response_variable)
plot.patches.boxplots(patch_type_i,
response_variable)
save_results_in_table = TRUE
filtered_data = ds_patches %>%
filter(
metaecosystem == "no",
time_point >= first_time_point_model,
time_point <= last_time_point_model,
!is.na(!!sym(response_variable))
)
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
patch_size_ml and
patch_size_ml : day)
full_model = lmer(
get(response_variable) ~
day +
patch_size_ml +
patch_size_ml : day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood ['lmerMod']
## Formula: get(response_variable) ~ day + patch_size_ml + patch_size_ml:day +
## (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 1286.8 1305.6 -635.4 1270.8 70
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.9 -0.5 0.0 0.5 3.0
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 2e+05 402
## day 4e+00 2 -1.00
## Residual 6e+05 776
## Number of obs: 78, groups: culture_ID, 14
##
## Fixed effects:
## Estimate Std. Error t value
## (Intercept) 1985 620 3
## day 80 32 2
## patch_size_ml 41 23 2
## day:patch_size_ml -2 1 -2
##
## Correlation of Fixed Effects:
## (Intr) day ptch__
## day -0.872
## patch_sz_ml -0.902 0.781
## dy:ptch_sz_ 0.803 -0.914 -0.870
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Patch Type: ", filtered_data$patch_type, "<br>",
"Biomass density: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>",
"Species richness: ", filtered_data$species_richness, "<br>"),
hoverinfo = "text") %>%
plotly::layout(
title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(full_model))
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 0 0.133 none
patch_size_ml)
reduced_model = lmer(
get(response_variable) ~
day +
patch_size_ml +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood ['lmerMod']
## Formula: get(response_variable) ~ day + patch_size_ml + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 1288.8 1305.3 -637.4 1274.8 71
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -3.02 -0.31 0.07 0.49 2.91
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 2e+05 467
## day 2e+02 14 -0.59
## Residual 6e+05 790
## Number of obs: 78, groups: culture_ID, 14
##
## Fixed effects:
## Estimate Std. Error t value
## (Intercept) 3e+03 4e+02 7.8
## day 2e+01 1e+01 1.5
## patch_size_ml 9e-01 1e+01 0.1
##
## Correlation of Fixed Effects:
## (Intr) day
## day -0.586
## patch_sz_ml -0.684 -0.072
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Patch Type: ", filtered_data$patch_type, "<br>",
"Biomass density: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>",
"Species richness: ", filtered_data$species_richness, "<br>"),
hoverinfo = "text") %>%
plotly::layout(
title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(reduced_model))
model_stats_fixed = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_fixed %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 2 0.948 none
results_table = fill.results.table(results_table,
response_variable,
patch_type_i,
model_stats_full,
model_stats_fixed)
for(patch_type_i in patch_type_i){
print(patch_type_i)
p = ds_patches %>%
filter(patch_type == patch_type_i) %>%
group_by(day) %>%
summarise(
Ble = mean(Ble_indiv_per_ml_dominance, na.rm = TRUE),
# Ble_se = sd(Ble_indiv_per_ml_dominance, na.rm = TRUE) / sqrt(n()),
# Ble_ci = qt(c(0.025, 0.975), df = n() - 1) * Ble_se,
Cep = mean(Cep_indiv_per_ml_dominance, na.rm = TRUE),
Col = mean(Col_indiv_per_ml_dominance, na.rm = TRUE),
Eup = mean(Eup_indiv_per_ml_dominance, na.rm = TRUE),
Lox = mean(Lox_indiv_per_ml_dominance, na.rm = TRUE),
Pau = mean(Pau_indiv_per_ml_dominance, na.rm = TRUE),
Pca = mean(Pca_indiv_per_ml_dominance, na.rm = TRUE),
Spi = mean(Spi_indiv_per_ml_dominance, na.rm = TRUE),
Spi_te = mean(Spi_te_indiv_per_ml_dominance, na.rm = TRUE),
Tet = mean(Tet_indiv_per_ml_dominance, na.rm = TRUE)
) %>%
pivot_longer(Ble:Tet, names_to = "species", values_to = "species_indiv_per_ml") %>%
ggplot(aes(
x = day,
y = species_indiv_per_ml,
group = interaction(day, species),
color = species
)) +
geom_point(position = position_dodge(dodging),
size = treatment_points_size) +
geom_line(
aes(group = species),
position = position_dodge(dodging),
linewidth = treatment_lines_linewidth) +
labs(x = axis_names %>%
filter(variable == "day") %>%
pull(axis_name),
y = axis_names %>%
filter(variable == "dominance") %>%
pull(axis_name)) +
coord_cartesian(ylim = c(0, 100))
print(p)
}
## [1] "Large connected to large"
## [1] "Large connected to small"
## [1] "Large isolated"
# Construct plots
response_variable_list = NULL
n_of_plots = 3
response_variable_list[[1]] = "mean_shannon"
response_variable_list[[2]] = "bray_curtis"
response_variable_list[[3]] = "metaecosystem_richness"
metaecosystem_type_i = c("Medium-Medium meta-ecosystem",
"Medium-Medium isolated",
"Small-Large meta-ecosystem",
"Small-Large isolated")
legend_row_n_input = 2
p = NULL
for (i in 1: n_of_plots) {
p[[i]] = plot.metaecos.points(ds_metaecosystems,
metaecosystem_type_i,
response_variable_list[[i]],
legend_row_n_input) +
theme(plot.margin = unit(c(ggarrange_margin_left,
ggarrange_margin_right,
ggarrange_margin_bottom,
ggarrange_margin_left),
"cm"))
}
# Combine plots
p_combined = ggarrange(
p[[1]] +
rremove("xlab") +
theme(axis.text.x = element_blank(),
axis.ticks.x = element_blank()) +
font("legend.text", size = size_legend) +
font("ylab", size = size_y_axis),
p[[2]] +
rremove("xlab") +
theme(axis.text.x = element_blank(),
axis.ticks.x = element_blank()) +
font("legend.text", size = size_legend) +
font("ylab", size = size_y_axis),
p[[3]] +
font("legend.text", size = size_legend) +
font("xlab", size = size_y_axis) +
font("ylab", size = size_y_axis) +
scale_x_continuous(breaks = unique(ds_metaecosystems$day)),
heights = c(0.8,0.8,1),
nrow = 3,
common.legend = TRUE,
align = "v",
labels = c("(a)", "(b)", "(c)"),
label.x = 0.1,
label.y = 0.8
)
# Show combined plots
p_combined
# Save combined plots
png(
file = here("results", "figures", disturbance_global_input, "paper", "metaecosystems_diversity.png"),
width = paper_width,
height = paper_height,
units = paper_units,
res = paper_res
)
p_combined
dev.off()
# Construct function to create empty plots
plot.empty = function(y_min,
y_max){
ds_metaecosystems %>%
filter(metaecosystem_type %in% metaecosystem_type_i,
!is.na(!!sym(response_variable))) %>%
ggplot(
aes(
x = day,
y = get(response_variable),
group = interaction(day, metaecosystem_type),
color = metaecosystem_type,
linetype = metaecosystem_type
)
) +
geom_point(
stat = "summary",
fun = "mean",
position = position_dodge(dodging),
size = presentation_treatment_points_size
) +
geom_line(
stat = "summary",
fun = "mean",
aes(group = metaecosystem_type),
position = position_dodge(dodging),
linewidth = presentation_treatment_linewidth
) +
xlim(x_min, x_max) +
ylim(y_min, y_max) +
labs(x = axis_names$axis_name[axis_names$variable == "day"],
y = axis_names$axis_name[axis_names$variable == response_variable],
color = "") +
geom_vline(
xintercept = resource_flow_days,
linetype = resource_flow_line_type,
color = resource_flow_line_colour,
linewidth = resource_flow_line_width
) +
theme_bw() +
theme(
panel.grid.major = element_blank(),
panel.grid.minor = element_blank(),
legend.position = legend_position,
legend.key.width = unit(legend_width_cm, "cm")
) +
guides(color = guide_legend(title = NULL,
nrow = 3),
linetype = guide_legend(title = NULL,
nrow = 3)) +
guides(color = "none",
linetype = "none")
}
# Construct empty alpha & beta plots
metaecosystem_type_i = ""
x_min = -0.2
x_max = 30
response_variable = "mean_shannon"
y_min_alpha = 0
y_max_alpha = 2.5
alpha_plots = NULL
alpha_plots[[1]] = plot.empty(y_min_alpha,
y_max_alpha)
response_variable = "bray_curtis"
y_min_beta = 0
y_max_beta = 1
beta_plots = NULL
beta_plots[[1]] = plot.empty(y_min_beta,
y_max_beta)
# Construct alpha & beta plots
metaecosystem_type_i = c("Medium-Medium meta-ecosystem",
"Medium-Medium isolated",
"Small-Large meta-ecosystem",
"Small-Large isolated")
legend_row_n_input = 2
response_variable = "mean_shannon"
for (i in 1:length(metaecosystem_type_i)) {
alpha_plots[[i+1]] = plot.metaecos.points(ds_metaecosystems,
metaecosystem_type_i[1:i],
response_variable,
legend_row_n_input) +
theme(plot.margin = unit(c(ggarrange_margin_left,
ggarrange_margin_right,
ggarrange_margin_bottom,
ggarrange_margin_left),
"cm"),
legend.position = "none") +
xlim(x_min, x_max) +
ylim(y_min_alpha, y_max_alpha)
}
response_variable = "bray_curtis"
for (i in 1:length(metaecosystem_type_i)) {
beta_plots[[i+1]] = plot.metaecos.points(ds_metaecosystems,
metaecosystem_type_i[1:i],
response_variable,
legend_row_n_input) +
theme(plot.margin = unit(c(ggarrange_margin_left,
ggarrange_margin_right,
ggarrange_margin_bottom,
ggarrange_margin_left),
"cm"),
legend.position = "none") +
xlim(x_min, x_max) +
ylim(y_min_beta, y_max_beta)
}
# Combine plots
p_combined = NULL
for(i in 1:5){
p_combined[[i]] = ggarrange(
alpha_plots[[i]] +
rremove("xlab") +
theme(axis.text.x = element_blank(),
axis.ticks.x = element_blank()) +
font("legend.text", size = size_legend) +
font("ylab", size = size_y_axis),
beta_plots[[i]] +
font("legend.text", size = size_legend) +
font("xlab", size = size_y_axis) +
font("ylab", size = size_y_axis) +
scale_x_continuous(breaks = unique(ds_patches$day)),
heights = c(0.8, 0.8, 1),
nrow = 2,
align = "v",
label.x = 0.1,
label.y = 0.8)
}
# Save combined plots
for(i in 1:5){
png(file = here("results", "figures", disturbance_global_input, "presentations", paste0(i, "_metaecos_diversity.png")),
width = paper_width,
height = paper_height,
units = paper_units,
res = paper_res)
print(p_combined[[i]])
dev.off()
}
# Construct plots
response_variable_list = NULL
response_variable_list[[1]] = "bioarea_mm2_per_ml"
response_variable_list[[2]] = "shannon"
patch_type_i = c("Small isolated",
"Medium isolated",
"Large isolated")
legend_row_n_input = 2
p = NULL
for (i in 1:2) {
p[[i]] = plot.patches.points(ds_patches,
patch_type_i,
response_variable_list[[i]],
legend_row_n_input) +
theme(plot.margin = unit(c(ggarrange_margin_left,
ggarrange_margin_right,
ggarrange_margin_bottom,
ggarrange_margin_left),
"cm"))
}
## Warning in qt(conf.interval/2 + 0.5, datac$N - 1): NaNs produced
# Combine plots
p_combined = ggarrange(
p[[1]] +
rremove("xlab") +
theme(axis.text.x = element_blank(),
axis.ticks.x = element_blank()) +
font("legend.text", size = size_legend) +
font("ylab", size = size_y_axis),
p[[2]] +
font("legend.text", size = size_legend) +
font("xlab", size = size_y_axis) +
font("ylab", size = size_y_axis) +
scale_x_continuous(breaks = unique(ds_patches$day)),
heights = c(0.8, 0.8, 1),
nrow = 2,
align = "v",
labels = c("(a)", "(b)"),
label.x = 0.1,
label.y = 0.8,
common.legend = TRUE
)
# Show combined plots
p_combined
# Save combined plots
png(
file = here("results", "figures", disturbance_global_input, "paper", "patches_biomass.png"),
width = paper_width,
height = paper_height,
units = paper_units,
res = paper_res
)
p_combined
dev.off()
evaporation.test = read.csv(here("data", "evaporation_test","evaporation_test_right.csv"), header = TRUE)
evaporation.test %>%
ggplot(aes (x = as.character(water_pipetted),
y = weight_water_evaporated,
group = interaction(water_pipetted, as.character(rack)),
fill = as.character(rack))) +
geom_boxplot(width = boxplot_width) +
labs(x = "Water volume (ml)" ,
y = "Evaporation (g)",
fill = "Rack replicate")
evaporation.test = read.csv(here("data", "evaporation_test", "evaporation_test_fill_nofill.csv"), header = TRUE)
evaporation.test %>%
ggplot(aes (x = all_tubes_water,
y = weight_water_evaporated)) +
geom_boxplot(width = boxplot_width) +
labs(x = "Water in the other 10 tubes" ,
y = "Evaporation (g)",
caption = "When all tubes were filled, they were filled with 6.75 ml of deionised water.")
rm(list = ls())
setwd("/media/mendel-himself/ID_061_Ema2/PatchSizePilot/training")
# load package
# library(devtools)
# install_github("femoerman/bemovi", ref="master")
library(bemovi)
library(parallel)
library(doParallel)
library(foreach)
#Define memory to be allocated
memory.alloc <- 240000 #-needs_to_be_specified
memory.per.identifier <- 40000 #-needs_to_be_specified
memory.per.linker <- 5000 #-needs_to_be_specified
memory.per.overlay <- 60000 #-needs_to_be_specified
# UNIX
# set paths to tools folder and particle linker
tools.path <-
"/home/mendel-himself/bemovi_tools/" #-needs_to_be_specified
to.particlelinker <- tools.path
# directories and file names
to.data <- paste(getwd(), "/", sep = "")
video.description.folder <- "0_video_description/"
video.description.file <- "video_description.txt"
raw.video.folder <- "1_raw/"
raw.avi.folder <- "1a_raw_avi/"
metadata.folder <- "1b_raw_meta/"
particle.data.folder <- "2_particle_data/"
trajectory.data.folder <- "3_trajectory_data/"
temp.overlay.folder <- "4a_temp_overlays/"
overlay.folder <- "4_overlays/"
merged.data.folder <- "5_merged_data/"
ijmacs.folder <- "ijmacs/"
######################################################################
# VIDEO PARAMETERS
# video frame rate (in frames per second)
fps <- 25 #-needs_to_be_specified
# length of video (in frames)
total_frames <- 125 #-needs_to_be_specified
#Dimensions of the videos in pixels
width = 2048 #-needs_to_be_specified
height = 2048 #-needs_to_be_specified
# measured volume (in microliter) #-needs_to_be_specified
measured_volume <-
34.4 # for Leica M205 C with 1.6 fold magnification, sample height 0.5 mm and Hamamatsu Orca Flash 4
#measured_volume <- 14.9 # for Nikon SMZ1500 with 2 fold magnification, sample height 0.5 mm and Canon 5D Mark III
# size of a pixel (in micrometer) #-needs_to_be_specified
pixel_to_scale <-
4.05 # for Leica M205 C with 1.6 fold magnification, sample height 0.5 mm and Hamamatsu Orca Flash 4
#pixel_to_scale <- 3.79 # for Nikon SMZ1500 with 2 fold magnification, sample height 0.5 mm and Canon 5D Mark III
# specify video file format (one of "avi","cxd","mov","tiff")
# bemovi only works with avi and cxd. other formats are reformated to avi below
video.format <- "cxd" #-needs_to_be_specified
# setup
difference.lag <- 10
thresholds <- c(13, 255) # don't change the second value
# thresholds <- c(50,255)
# MORE PARAMETERS (USUALLY NOT CHANGED)
######################################################################
# FILTERING PARAMETERS
# optimized for Perfex Pro 10 stereomicrocope with Perfex SC38800 (IDS UI-3880LE-M-GL) camera
# tested stereomicroscopes: Perfex Pro 10, Nikon SMZ1500, Leica M205 C
# tested cameras: Perfex SC38800, Canon 5D Mark III, Hamamatsu Orca Flash 4
# tested species: Tet, Col, Pau, Pca, Eug, Chi, Ble, Ceph, Lox, Spi
# min and max size: area in pixels
particle_min_size <- 10
particle_max_size <- 1000
# number of adjacent frames to be considered for linking particles
trajectory_link_range <- 3
# maximum distance a particle can move between two frames
trajectory_displacement <- 16
# these values are in the units defined by the parameters above: fps (seconds), measured_volume (microliters) and pixel_to_scale (micometers)
filter_min_net_disp <- 25
filter_min_duration <- 1
filter_detection_freq <- 0.1
filter_median_step_length <- 3
######################################################################
# VIDEO ANALYSIS
#Check if all tools are installed, and if not install them
check_tools_folder(tools.path)
#Ensure computer has permission to run bftools
system(paste0("chmod a+x ", tools.path, "bftools/bf.sh"))
system(paste0("chmod a+x ", tools.path, "bftools/bfconvert"))
system(paste0("chmod a+x ", tools.path, "bftools/showinf"))
# Convert files to compressed avi (takes approx. 2.25 minutes per video)
convert_to_avi(
to.data,
raw.video.folder,
raw.avi.folder,
metadata.folder,
tools.path,
fps,
video.format
)
# TESTING
# check file format and naming
# check_video_file_names(to.data,raw.avi.folder,video.description.folder,video.description.file)
# check whether the thresholds make sense (set "dark backgroud" and "red")
#check_threshold_values(to.data, raw.avi.folder, ijmacs.folder, 2, difference.lag, thresholds, tools.path, memory.alloc)
# identify particles
locate_and_measure_particles(
to.data,
raw.avi.folder,
particle.data.folder,
difference.lag,
min_size = particle_min_size,
max_size = particle_max_size,
thresholds = thresholds,
tools.path,
memory = memory.alloc,
memory.per.identifier = memory.per.identifier,
max.cores = detectCores() - 1
)
# link the particles
link_particles(
to.data,
particle.data.folder,
trajectory.data.folder,
linkrange = trajectory_link_range,
disp = trajectory_displacement,
start_vid = 1,
memory = memory.alloc,
memory_per_linkerProcess = memory.per.linker,
raw.avi.folder,
max.cores = detectCores() - 1,
max_time = 1
)
# merge info from description file and data
merge_data(
to.data,
particle.data.folder,
trajectory.data.folder,
video.description.folder,
video.description.file,
merged.data.folder
)
# load the merged data
load(paste0(to.data, merged.data.folder, "Master.RData"))
# filter data: minimum net displacement, their duration, the detection frequency and the median step length
trajectory.data.filtered <-
filter_data(
trajectory.data,
filter_min_net_disp,
filter_min_duration,
filter_detection_freq,
filter_median_step_length
)
# summarize trajectory data to individual-based data
morph_mvt <-
summarize_trajectories(
trajectory.data.filtered,
calculate.median = F,
write = T,
to.data,
merged.data.folder
)
# get sample level info
summarize_populations(
trajectory.data.filtered,
morph_mvt,
write = T,
to.data,
merged.data.folder,
video.description.folder,
video.description.file,
total_frames
)
# create overlays for validation
create.subtitle.overlays(
to.data,
traj.data = trajectory.data.filtered,
raw.video.folder,
raw.avi.folder,
temp.overlay.folder,
overlay.folder,
fps,
vid.length = total_frames / fps,
width,
height,
tools.path = tools.path,
overlay.type = "number",
video.format
)
# Create overlays (old method)
create_overlays(
traj.data = trajectory.data.filtered,
to.data = to.data,
merged.data.folder = merged.data.folder,
raw.video.folder = raw.avi.folder,
temp.overlay.folder = "4a_temp_overlays_old/",
overlay.folder = "4_overlays_old/",
width = width,
height = height,
difference.lag = difference.lag,
type = "traj",
predict_spec = F,
contrast.enhancement = 1,
IJ.path = "/home/mendel-himself/bemovi_tools",
memory = memory.alloc,
max.cores = detectCores() - 1,
memory.per.overlay = memory.per.overlay
)
########################################################################
# some cleaning up
#system("rm -r 2_particle_data")
#system("rm -r 3_trajectory_data")
#system("rm -r 4a_temp_overlays")
system("rm -r ijmacs")
########################################################################
rm(list = ls())
#install.packages("e1071",dependencies = T)
#install.packages("devtools",dependencies = T)
#install_github("pennekampster/bemovi", ref="master")
#library(devtools)
library(bemovi)
library(e1071)
library("here")
library("tidyverse")
time_points_in_experiment = c("t0", "t1", "t2", "t3", "t4", "t5", "t6", "t7")
for (time_point in time_points_in_experiment) {
#Folder names and paths
video.description.folder = "0_video_description/"
video.description.file = "video_description.txt"
merged.data.folder = "5_merged_data/"
monocultures_folder_path = here("biomass_analysis", "training", "")
mixed_cultures_folder_path = here("biomass_analysis", time_point, "")
#Parameters used in the video analysis script
fps = 25
nsv = 5
measured_volume = 34.4
pixel_to_scale = 4.05
filter_min_net_disp = 25
filter_min_duration = 1
filter_detection_freq = 0.1
filter_median_step_length = 3
#Load master dataset of mono-cultures
load(paste0(
monocultures_folder_path,
merged.data.folder,
"Master.RData"
))
trajectory.data_monocultures = trajectory.data
rm(trajectory.data)
#Filter the master data of mono-cultures using the same parameters as in the videos analysis script
trajectory.data_monocultures.filtered = filter_data(
trajectory.data_monocultures,
filter_min_net_disp,
filter_min_duration,
filter_detection_freq,
filter_median_step_length
)
#Go from trajectory data to individuals data
morph_mvt = summarize_trajectories(
data = trajectory.data_monocultures.filtered,
calculate.median = FALSE,
write = TRUE,
to.data = monocultures_folder_path,
merged.data.folder = merged.data.folder
) %>%
mutate(comment = NULL)
training_data = morph_mvt[complete.cases(morph_mvt), ]
svm1 = svm(
factor(species) ~
mean_grey +
sd_grey +
mean_area +
sd_area +
mean_perimeter +
mean_turning +
sd_turning +
sd_perimeter +
mean_major +
sd_major +
mean_minor +
sd_minor +
mean_ar +
sd_ar +
duration +
max_net +
net_disp +
net_speed +
gross_disp +
max_step +
min_step +
sd_step +
sd_gross_speed +
max_gross_speed +
min_gross_speed ,
data = training_data,
probability = T,
na.action = na.pass
)
confusion.matrix = table(svm1$fitted, training_data$species)
confusion.matrix.nd = confusion.matrix
diag(confusion.matrix.nd) = 0
svm1$confusion = cbind(confusion.matrix,
class.error = rowSums(confusion.matrix.nd) / rowSums(confusion.matrix))
print(paste("Confusion matrix of time point", time_point))
print(svm1$confusion)
species.names = unique(trajectory.data_monocultures$species)
load(paste0(
mixed_cultures_folder_path,
merged.data.folder,
"Master.RData"
))
trajectory.data_mixed = trajectory.data
rm(trajectory.data)
trajectory.data_mixed.filtered = filter_data(
trajectory.data_mixed,
filter_min_net_disp,
filter_min_duration,
filter_detection_freq,
filter_median_step_length
)
morph_mvt = summarize_trajectories(
data = trajectory.data_mixed.filtered,
calculate.median = FALSE,
write = TRUE,
to.data = mixed_cultures_folder_path,
merged.data.folder = merged.data.folder
)[, which(colnames(morph_mvt) != "Col_manual")] %>%
mutate(comment = NULL)
data.to.predict = morph_mvt[complete.cases(morph_mvt),]
p.id = predict(object = svm1,
data.to.predict,
type = "response")
data.to.predict$predicted_species = as.character(p.id)
pop.data = summarize_populations(
traj.data = trajectory.data_monocultures.filtered,
sum.data = morph_mvt,
write = TRUE,
to.data = mixed_cultures_folder_path,
merged.data.folder = merged.data.folder,
video.description.folder = video.description.folder,
video.description.file = video.description.file,
total_frame = fps * nsv
)
species.density = function(sample_output,
indiv_predicted,
species_names,
total_frames,
mv = measured_volume) {
samples = unique(indiv_predicted$file)
sp.dens = matrix(0,
nrow(sample_output),
length(species_names))
colnames(sp.dens) = species_names
for (i in 1:length(samples)) {
indiv = subset(indiv_predicted, file == samples[i])
spec = unique(indiv$predicted_species)
for (j in 1:length(spec)) {
all.indiv.sp = subset(indiv,
predicted_species == spec[j])
dens = sum(all.indiv.sp$N_frames) / total_frames / mv
sp.dens[which(sample_output$file == as.character(samples[i])), which(species_names == spec[j])] = dens
}
}
return(cbind(sample_output, sp.dens))
}
output = species.density(
pop.data,
data.to.predict,
species.names,
total_frames = fps * nsv,
mv = measured_volume
)
file_name = paste0("species_ID_", time_point, ".csv")
write.csv(output,
here("biomass_analysis", "species_ID_results", file_name))
rm(output)
}
## Time difference of 1.3 mins
Check that disturbance_global_input is what you set:
print(paste0("Disturbance = ", disturbance_global_input))
## [1] "Disturbance = high"
If you want to change a certain part of the code:
#Rmd script
cd /Users/ema/Documents/GitHub/PatchSize/r_files
sed -i '' 's/old_string/new_string/g' *.Rmd
#R script
cd /Users/ema/Documents/GitHub/PatchSize/r_files/functions
sed -i '' 's/old_string/new_string/g' *.R
dput()
The only type of patch where all cultures crashed was small connected to small at high disturbance.